diff options
author | Heikki Kallasjoki <fis@zem.fi> | 2018-11-30 16:50:28 +0000 |
---|---|---|
committer | Heikki Kallasjoki <fis@zem.fi> | 2018-11-30 16:50:28 +0000 |
commit | 5a33aec2b710e4d21377e5b82f4b0bdf6a13a408 (patch) | |
tree | 01accfa838fa90a24fc350405f9263772220b897 /cpu.c | |
parent | e2a859d54f9c8a0498b79acc1c3d27732a41759e (diff) | |
download | nano-exporter-5a33aec2b710e4d21377e5b82f4b0bdf6a13a408.tar.gz nano-exporter-5a33aec2b710e4d21377e5b82f4b0bdf6a13a408.tar.xz nano-exporter-5a33aec2b710e4d21377e5b82f4b0bdf6a13a408.zip |
Clean up compiler warnings.
Diffstat (limited to 'cpu.c')
-rw-r--r-- | cpu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpu.c b/cpu.c index 94dd4c5..4a058d7 100644 --- a/cpu.c +++ b/cpu.c @@ -26,6 +26,8 @@ struct cpu_context { }; void *cpu_init(int argc, char *argv[]) { + (void) argc; (void) argv; + long clock_tick = sysconf(_SC_CLK_TCK); if (clock_tick <= 0) { perror("sysconf(_SC_CLK_TCK)"); @@ -74,7 +76,7 @@ void cpu_collect(scrape_req *req, void *ctx_ptr) { char *at = buf + 3; char *sep = strchr(at, ' '); - if (!sep || sep - at + 1 > sizeof cpu_label) + if (!sep || sep - at + 1 > (ptrdiff_t) sizeof cpu_label) continue; *sep = '\0'; strcpy(cpu_label, at); |