mirror of
https://github.com/reactos/reactos.git
synced 2025-05-02 04:05:56 +00:00
[LOG2LINES] Partially sync output format from command line input (#1109)
This commit is contained in:
parent
c2083ed360
commit
5c77cd9050
1 changed files with 6 additions and 2 deletions
|
@ -644,8 +644,12 @@ main(int argc, const char **argv)
|
|||
if (exefile)
|
||||
{
|
||||
l2l_dbg(2, "translating %s %s\n", exefile, offset);
|
||||
translate_file(exefile, my_atoi(offset), Line);
|
||||
printf("%s\n", Line);
|
||||
printf("<%s:%s", exefile, offset);
|
||||
if (!translate_file(exefile, my_atoi(offset), Line))
|
||||
{
|
||||
printf(" (%s)", Line);
|
||||
}
|
||||
printf(">\n");
|
||||
report(conOut);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue