From 2a469b1def2f51f06d60a93d7f2fd88997d99d6f Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Wed, 26 Aug 2015 13:30:26 +0200 Subject: [PATCH] nixprof: fix notation for Hz --- core/linux/nixprof/nixprof.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/linux/nixprof/nixprof.cpp b/core/linux/nixprof/nixprof.cpp index 166a77d07..5ce5c88d4 100644 --- a/core/linux/nixprof/nixprof.cpp +++ b/core/linux/nixprof/nixprof.cpp @@ -327,7 +327,7 @@ void sample_Start(int freq) if (prof_run) return; prof_wait = 1000000 / freq; - printf("sampling profiler: starting %d hz %d wait\n", freq, prof_wait); + printf("sampling profiler: starting %d Hz %d wait\n", freq, prof_wait); prof_run = true; pthread_create(&proft, NULL, profiler_main, 0); }