Fix uninitialized variable in sprofalyze
This commit is contained in:
parent
41df1b59f1
commit
0e83262042
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ static void usage(const char *argv0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
int opt, sprofdiff;
|
int opt, sprofdiff = 0;
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
/* disable buffering so the output mixes correctly */
|
/* disable buffering so the output mixes correctly */
|
||||||
|
|
Loading…
Reference in a new issue