strace: Don't print the starting "_kern_" in the stats view.

Same change that was made for the non-stats printing a long
time ago.
This commit is contained in:
Augustin Cavalier
2024-06-25 22:10:49 -04:00
parent a85ea80f68
commit d1c8e2fe7c
+1 -1
View File
@@ -536,7 +536,7 @@ print_stats(FILE* outputFile)
print_to_string(&string, &length, "%6.2f %10" B_PRIu64 " %7" B_PRIu32
" %10" B_PRIu64 " %s\n", percent, stats.time, stats.count, perCall,
callIterator->first->c_str());
callIterator->first->c_str() + 6);
}
print_buffer(outputFile, buffer, sizeof(buffer) - length);