Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/mm
In directory sc8-pr-cvs1:/tmp/cvs-serv8873/arch/vax/mm
Modified Files:
init.c
Log Message:
Fix multiple definitions of symbols that were covered up by us not
using GCC's -fno-common option
Index: init.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/mm/init.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- init.c 31 Dec 2002 22:34:26 -0000 1.10
+++ init.c 24 Jan 2003 00:28:32 -0000 1.11
@@ -47,7 +47,7 @@
* physical RAM. In this routine we initialise the remaining areas of
* the memory, and system page table.
*/
-void __init paging_init()
+void __init paging_init(void)
{
hwpte_t *pte, *lastpte;
unsigned int ii;
|