arch/i386/kernel/kgdb_stub.c:1306: warning: 'time' might be used uninitialized in this function arch/i386/kernel/kgdb_stub.c:1306: warning: 'dum' might be used uninitialized in this function --- 25-akpm/arch/i386/kernel/kgdb_stub.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/kgdb_stub.c~kgdb-warning-fixes arch/i386/kernel/kgdb_stub.c --- 25/arch/i386/kernel/kgdb_stub.c~kgdb-warning-fixes 2004-04-06 21:08:45.461145672 -0700 +++ 25-akpm/arch/i386/kernel/kgdb_stub.c 2004-04-06 21:08:45.467144760 -0700 @@ -1303,7 +1303,7 @@ kgdb_handle_exception(int exceptionVecto } #endif if (spinlock_count == 1) { - int time, end_time, dum; + int time = 0, end_time, dum = 0; int i; int cpu_logged_in[MAX_NO_CPUS] = {[0 ... MAX_NO_CPUS - 1] = (0) }; _