opnsense-ports/java/lightweight-java-profiler/files/patch-src_display.cc
Franco Fichtner 10458da91b */*: sync with upstream
Taken from: FreeBSD
2017-04-02 12:03:09 +02:00

11 lines
391 B
C++

--- 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");
}