Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/boot
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28603
Modified Files:
lib.c
Log Message:
- Prefix hex numbers with '0x'.
Index: lib.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/boot/lib.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- lib.c 29 Sep 2004 21:49:58 -0000 1.5
+++ lib.c 30 Sep 2004 05:31:04 -0000 1.6
@@ -44,6 +44,10 @@
{
int i;
int d;
+
+ boot_putchar('0');
+ boot_putchar('x');
+
for (i = 28; i>= 0; i -= 4) {
d = (x >> i) & 0x0f;
if (d > 9) {
|