From af7ed330aebbcd9363bf83d99c1455a8c3b06389 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Fri, 28 Feb 2014 22:18:58 +0100 Subject: [PATCH] Properly fix the iowait_ticks / strtoull () warning in mono-proclib. --- mono/utils/mono-proclib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/utils/mono-proclib.c b/mono/utils/mono-proclib.c index dab3a5579e2..c6965b680dd 100644 --- a/mono/utils/mono-proclib.c +++ b/mono/utils/mono-proclib.c @@ -583,7 +583,7 @@ get_cpu_times (int cpu_id, gint64 *user, gint64 *systemt, gint64 *irq, gint64 *s nice_ticks = strtoull (data, &data, 10); system_ticks = strtoull (data, &data, 10); idle_ticks = strtoull (data, &data, 10); - strtoull (data, &data, 10); /* iowait_ticks */ + /* iowait_ticks = strtoull (data, &data, 10); */ irq_ticks = strtoull (data, &data, 10); sirq_ticks = strtoull (data, &data, 10); break; -- 2.25.1