swap plugin: Fix another typo in the *BSD code.
authorSimon Kuhnle <simon@blarzwurst.de>
Mon, 16 Feb 2009 12:06:06 +0000 (13:06 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 16 Feb 2009 12:06:06 +0000 (13:06 +0100)
src/swap.c

index 24289ab..bcfe4a2 100644 (file)
@@ -308,8 +308,8 @@ static int swap_read (void)
                if ((swap_entries[i].se_flags & SWF_ENABLE) == 0)
                        continue;
 
-               used = swap_entries[i].se_inuse  * C_SWAP_BLOCK_SIZE;
-               total = swap_entries[i].se_nblks * C_SWAP_BLOCK_SIZE;
+               used  += swap_entries[i].se_inuse * C_SWAP_BLOCK_SIZE;
+               total += swap_entries[i].se_nblks * C_SWAP_BLOCK_SIZE;
        }
 
        swap_submit ("used", (gauge_t) used);