Source-Changes-D archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CVS commit: src/sys/arch/acorn32/acorn32



> Modified Files:
> 	src/sys/arch/acorn32/acorn32: rpc_machdep.c
> 
> Log Message:
> change 0x% -> %x

This should read %#x.
And this is wrong.

1) With # the 0x is part of the width, so 

0x%08x -> 0x00000001
%#08x  -> 0x000001

0x00000000 0x00000001
00000000 0x000001

2) # doesn't add prefix for zero, so 

0x%08x -> 0x00000000
%#08x  -> 00000000 

-uwe


Home | Main Index | Thread Index | Old Index