Fix uninitialized variable in sprofalyze

This commit is contained in:
Erik van der Kouwe 2012-09-04 11:56:18 +02:00
parent 41df1b59f1
commit 0e83262042

View file

@ -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 */