1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-01 08:29:37 +00:00

Improved the format of the global symbols' lists of flags, in cc65's debugging output.

This commit is contained in:
Greg King 2015-08-08 22:04:38 -04:00
parent 6f24c07836
commit d36f31dcff

View File

@ -138,7 +138,7 @@ void DumpSymEntry (FILE* F, const SymEntry* E)
}
}
if (SymFlags != 0) {
fprintf (F, "%04X", SymFlags);
fprintf (F, " 0x%05X", SymFlags);
}
fprintf (F, "\n");