From: Vincent Brillault Date: Sat, 23 Aug 2014 15:30:18 +0000 (+0200) Subject: Turbostat: don't hide the actual size of the buffer in some define X-Git-Tag: collectd-5.5.0~24^2~52 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=9614ef2432c6cd728c7a4511c80dc534ea6ec391 Turbostat: don't hide the actual size of the buffer in some define --- diff --git a/src/turbostat.c b/src/turbostat.c index 17fe0056..55d1179b 100644 --- a/src/turbostat.c +++ b/src/turbostat.c @@ -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;