]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix uninitialized variable in sprofalyze
authorErik van der Kouwe <erik@minix3.org>
Tue, 4 Sep 2012 09:56:18 +0000 (11:56 +0200)
committerErik van der Kouwe <erik@minix3.org>
Tue, 4 Sep 2012 09:56:18 +0000 (11:56 +0200)
commands/sprofalyze/sprofalyze.c

index 5f3d0450685102c3686c9a9f2faba5fa436087dc..dcc8f1f20508907341325d52f65a14dc2920170f 100755 (executable)
@@ -137,7 +137,7 @@ static void usage(const char *argv0);
 #endif
 
 int main(int argc, char **argv) {
-       int opt, sprofdiff;
+       int opt, sprofdiff = 0;
 
 #ifdef DEBUG
        /* disable buffering so the output mixes correctly */