فهرست منبع

fix: 解决printf_stdout参数错误问题

SongZihuan 3 سال پیش
والد
کامیت
67fdd8ba3b
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/main_build.c

+ 1 - 1
src/main_build.c

@@ -20,7 +20,7 @@ int buildFileOutput(FilePath out, FilePath in, bool force) {
     }
 
     writeInfoLog(aFunlangLogger, "Build %s, %s",  in, out);
-    printf_stdout(0, "Source will be build (%s -> %s)\n", HT_aFunGetText(build_file, "Source will be build"), in, out);
+    printf_stdout(0, "%s (%s -> %s)\n", HT_aFunGetText(build_file, "Source will be build"), in, out);
     return buildFile(out, in);
 }