diff options
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index cd74b2e58adb..707f60ce32fd 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -1266,7 +1266,7 @@ static void trace_event(event_t *event) | |||
1266 | for (j = 0; j < 15-(i & 15); j++) | 1266 | for (j = 0; j < 15-(i & 15); j++) |
1267 | cdprintf(" "); | 1267 | cdprintf(" "); |
1268 | for (j = 0; j < (i & 15); j++) { | 1268 | for (j = 0; j < (i & 15); j++) { |
1269 | if (isprint(raw_event[i-15+j])) | 1269 | if (issane(raw_event[i-15+j])) |
1270 | cdprintf("%c", raw_event[i-15+j]); | 1270 | cdprintf("%c", raw_event[i-15+j]); |
1271 | else | 1271 | else |
1272 | cdprintf("."); | 1272 | cdprintf("."); |