Properly fix the iowait_ticks / strtoull () warning in mono-proclib.
authorAlex Rønne Petersen <alexrp@xamarin.com>
Fri, 28 Feb 2014 21:18:58 +0000 (22:18 +0100)
committerAlex Rønne Petersen <alexrp@xamarin.com>
Fri, 28 Feb 2014 21:18:58 +0000 (22:18 +0100)
mono/utils/mono-proclib.c

index dab3a5579e2dfbbd8cac0f47179fae0a2cd3a92a..c6965b680dd88738f404a7c0e60cd6b2439f444e 100644 (file)
@@ -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;