Files

12 lines
391 B
C++
Raw Permalink Normal View History

2017-04-01 17:58:59 +00:00
--- src/display.cc.orig 2015-04-15 08:00:23 UTC
+++ src/display.cc
@@ -20,7 +20,7 @@ void StackTracesPrinter::PrintStackTrace
if (traces[i].count != 0) {
total += traces[i].count;
count++;
- fprintf(file_, "%"PRIdPTR" ", traces[i].count);
+ fprintf(file_, "%" PRIdPTR" ", traces[i].count);
PrintStackTrace(&traces[i]);
fprintf(file_, "\n");
}