From: Jan-Benedict G. <jb...@us...> - 2005-05-09 20:10:03
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10144/arch/vax/kernel Modified Files: time.c Log Message: - Silence "control reaches end of non-void function" warning (gcc-4.1 related). Index: time.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/time.c,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- time.c 25 Apr 2005 22:25:05 -0000 1.21 +++ time.c 9 May 2005 20:09:53 -0000 1.22 @@ -282,6 +282,8 @@ time_maxerror = NTP_PHASE_LIMIT; time_esterror = NTP_PHASE_LIMIT; write_sequnlock_irq(&xtime_lock); + + return 0; } /* nicked from the i386 port, but we use the same chip, hee hee */ |