Update of /cvsroot/blob/blob/src
In directory usw-pr-cvs1:/tmp/cvs-serv13923
Modified Files:
linux.c
Log Message:
Fix compiler warning (code isn't reached anyway).
Index: linux.c
===================================================================
RCS file: /cvsroot/blob/blob/src/linux.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- linux.c 2001/09/17 00:05:31 1.5
+++ linux.c 2001/09/23 14:59:01 1.6
@@ -73,6 +73,8 @@
theKernel(0, ARCH_NUMBER);
SerialOutputString("Hey, the kernel returned! This should not happen.\n");
+
+ return 0;
}
static char boothelp[] = "boot [kernel options]\n"
|