nixprof: fix notation for Hz

This commit is contained in:
Gabriel Corona 2015-08-26 13:30:26 +02:00
parent 8fc2d5d069
commit 2a469b1def
1 changed files with 1 additions and 1 deletions

View File

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