Turbostat: don't hide the actual size of the buffer in some define
authorVincent Brillault <git@lerya.net>
Sat, 23 Aug 2014 15:30:18 +0000 (17:30 +0200)
committerVincent Brillault <git@lerya.net>
Sat, 28 Feb 2015 06:35:41 +0000 (07:35 +0100)
src/turbostat.c

index 17fe005..55d1179 100644 (file)
@@ -804,11 +804,10 @@ turbostat_submit (const char *plugin_instance,
  * Perf Status percentage: %5.2
  * "CTMP" 4 columns %4d
  */
-#define NAME_LEN 12
 static int
 submit_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
 {
-       char name[NAME_LEN];
+       char name[12];
        double interval_float;
 
        interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;