소스 검색

* generate gcc compatible location output also if no column is known

git-svn-id: trunk@47189 -
florian 4 년 전
부모
커밋
0ba44502f9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compiler/comphook.pas

+ 1 - 1
compiler/comphook.pas

@@ -320,7 +320,7 @@ begin
      else
      else
       begin
       begin
         if status.use_gccoutput then
         if status.use_gccoutput then
-          hs:=gccfilename(status.currentsource)+': '+hs+' '+tostr(status.currentline)+': '+s
+          hs:=gccfilename(status.currentsource)+':'+tostr(status.currentline)+': '+hs+' '+s
         else
         else
           hs:=status.currentsource+'('+tostr(status.currentline)+') '+hs+' '+s;
           hs:=status.currentsource+'('+tostr(status.currentline)+') '+hs+' '+s;
       end;
       end;