Skip to content

Commit

Permalink
Do not add extra new line if there is one exist (#8538)
Browse files Browse the repository at this point in the history
* do not add extra new line if there is one exist

* review fixes
  • Loading branch information
AGulev committed Feb 21, 2024
1 parent 660ab76 commit a2c8424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/crash/src/crash.cpp
Expand Up @@ -333,7 +333,7 @@ namespace dmCrash
if (lineend && lineend < end)
*lineend = 0;

dmLogError("%s\n", p);
dmLogError("%s", p);

if (!lineend)
break;
Expand Down

0 comments on commit a2c8424

Please sign in to comment.