Browse Source

* added missing parenthesis

git-svn-id: trunk@26438 -
florian 11 years ago
parent
commit
6e63272ab7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      compiler/psub.pas

+ 2 - 2
compiler/psub.pas

@@ -1187,9 +1187,9 @@ implementation
 
 
         { add wrapping code if necessary (initialization of typed constants on
         { add wrapping code if necessary (initialization of typed constants on
           some platforms, initing of local variables and out parameters with
           some platforms, initing of local variables and out parameters with
-          trashing values, ... }
+          trashing values, ...) }
         { init/final code must be wrapped later (after code for main proc body
         { init/final code must be wrapped later (after code for main proc body
-          has been generated }
+          has been generated) }
         if not(current_procinfo.procdef.proctypeoption in [potype_unitinit,potype_unitfinalize]) then
         if not(current_procinfo.procdef.proctypeoption in [potype_unitinit,potype_unitfinalize]) then
           code:=cnodeutils.wrap_proc_body(procdef,code);
           code:=cnodeutils.wrap_proc_body(procdef,code);