patch-1.3.62 linux/init/main.c
Next file: linux/kernel/sched.c
Previous file: linux/include/net/tcp.h
Back to the patch index
Back to the overall index
- Lines: 23
- Date:
Sun Feb 11 13:28:37 1996
- Orig file:
v1.3.61/linux/init/main.c
- Orig date:
Wed Feb 7 15:11:39 1996
diff -u --recursive --new-file v1.3.61/linux/init/main.c linux/init/main.c
@@ -456,7 +456,7 @@
if (!strncmp(line, "nfsaddrs=", 9)) {
line += 9;
strncpy(nfs_root_addrs, line, sizeof(nfs_root_addrs));
- nfs_root_addrs[sizeof(nfs_root_addrs)] = '\0';
+ nfs_root_addrs[sizeof(nfs_root_addrs)-1] = '\0';
continue;
}
#endif
@@ -620,11 +620,11 @@
#endif
#endif
if (prof_shift) {
- prof_buffer = (unsigned long *) memory_start;
+ prof_buffer = (unsigned int *) memory_start;
/* only text is profiled */
prof_len = (unsigned long) &_etext - (unsigned long) &_stext;
prof_len >>= prof_shift;
- memory_start += prof_len * sizeof(unsigned long);
+ memory_start += prof_len * sizeof(unsigned int);
}
memory_start = console_init(memory_start,memory_end);
#ifdef CONFIG_PCI
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this