From d66ac4c7bfa1f5a561319d0795639a6ef52f5a01 Mon Sep 17 00:00:00 2001 From: mattias Date: Fri, 9 Sep 2011 06:51:19 +0000 Subject: [PATCH] codetools: fixed compilation win64 git-svn-id: trunk@32238 - --- components/codetools/fileprocs.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/codetools/fileprocs.pas b/components/codetools/fileprocs.pas index da9273ca85..bec894c055 100644 --- a/components/codetools/fileprocs.pas +++ b/components/codetools/fileprocs.pas @@ -2806,7 +2806,7 @@ begin // MWE: // fpc 2.x has troubles in choosing the right dbgs() // so we convert here - vtCurrency: Result:=Result+dbgs(int64(Args[i].vCurrency^)/10000 , 4)); + vtCurrency: Result:=Result+dbgs(int64(Args[i].vCurrency^)/10000 , 4); {$else} vtCurrency: Result:=Result+dbgs(Args[i].vCurrency^); {$endif}