Browse Source

* Add missing semicolon, detected after bugfix in compiler

michael 7 years ago
parent
commit
a50c08f7fa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl/contnrs.pas

+ 1 - 1
packages/rtl/contnrs.pas

@@ -554,7 +554,7 @@ begin
     O:=TObject(FList[Index]);
     FList[Index]:=Nil;
     O.Free;
-    end
+    end;
   FList.Delete(Index);
 end;