fix use of uninitialized variable.
authorchl <chl@openbsd.org>
Sun, 1 Aug 2010 03:09:48 +0000 (03:09 +0000)
committerchl <chl@openbsd.org>
Sun, 1 Aug 2010 03:09:48 +0000 (03:09 +0000)
reported by gcc.

ok canacar@

usr.bin/systat/mbufs.c

index f1c11f9..6a7a87e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mbufs.c,v 1.26 2009/11/23 21:44:33 henning Exp $ */
+/*     $OpenBSD: mbufs.c,v 1.27 2010/08/01 03:09:48 chl Exp $ */
 /*
  * Copyright (c) 2008 Can Erkin Acar <canacar@openbsd.org>
  *
@@ -254,7 +254,7 @@ read_mb(void)
        size = sizeof(struct pool);
 
        if (sysctl(mib, 4, &mbpool, &size, NULL, 0) < 0) {
-               error("sysctl(KERN_POOL_POOL, %d)", i);
+               error("sysctl(KERN_POOL_POOL, %d)", mib[3]);
                goto exit;
        }