summaryrefslogtreecommitdiff
path: root/java/lightweight-java-profiler/files/patch-src_display.cc
blob: b01d0400482bdef0e9d267f55877f8c7d5555a29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- 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");
     }