diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-01-15 21:50:41 +0000 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-01-15 21:50:41 +0000 |
commit | a231f5dbb93c60da240a027f2afd8a4797069541 (patch) | |
tree | a6bc68fdc2f1a1fa0000e5cd63a5189f170c226b /command_line/CmdLine/Src/CLWriteObjectFile.c | |
parent | 35d488e972a9dd75ce3867c000405f128b79c615 (diff) | |
download | MWCC-a231f5dbb93c60da240a027f2afd8a4797069541.tar.gz MWCC-a231f5dbb93c60da240a027f2afd8a4797069541.zip |
more cleanup
Diffstat (limited to '')
-rw-r--r-- | command_line/CmdLine/Src/CLWriteObjectFile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/command_line/CmdLine/Src/CLWriteObjectFile.c b/command_line/CmdLine/Src/CLWriteObjectFile.c index 22028dc..7f2cc05 100644 --- a/command_line/CmdLine/Src/CLWriteObjectFile.c +++ b/command_line/CmdLine/Src/CLWriteObjectFile.c @@ -12,7 +12,7 @@ int WriteObjectFile(File *file, OSType maccreator, OSType mactype) { OS_OSSpec_To_FSSpec(&file->srcfss, &srcfss); if (optsCmdLine.verbose) { - CLReport(16, + CLReport(CLStr16, (file->tempOnDisk & CmdLineStageMask_Cg) ? "temporary " : "", OS_SpecToStringRelative(&file->outfss, NULL, STSbuf, sizeof(STSbuf))); } @@ -33,7 +33,7 @@ int WriteBrowseData(File *file, OSType maccreator, OSType mactype) { OS_NameSpecSetExtension(&outfss.name, optsCompiler.brsFileExt[0] ? optsCompiler.brsFileExt : cof->brsFileExt); if (optsCmdLine.verbose) { - CLReport(17, OS_SpecToStringRelative(&outfss, NULL, STSbuf, sizeof(STSbuf))); + CLReport(CLStr17, OS_SpecToStringRelative(&outfss, NULL, STSbuf, sizeof(STSbuf))); } if (!Browser_PackBrowseFile(file->browsedata, &clState.browseTableHandle, &browsehandle)) |