Whitespace normalization.

This commit is contained in:
Thomas Heller 2002-07-30 11:44:44 +00:00
parent 3e1c18ad0c
commit 37d5a15e02

View file

@ -91,10 +91,10 @@ w_short(int x, WFILE *p)
static void static void
w_long(long x, WFILE *p) w_long(long x, WFILE *p)
{ {
w_byte((char)( x & 0xff), p); w_byte((char)( x & 0xff), p);
w_byte((char)((x>> 8) & 0xff), p); w_byte((char)((x>> 8) & 0xff), p);
w_byte((char)((x>>16) & 0xff), p); w_byte((char)((x>>16) & 0xff), p);
w_byte((char)((x>>24) & 0xff), p); w_byte((char)((x>>24) & 0xff), p);
} }
#if SIZEOF_LONG > 4 #if SIZEOF_LONG > 4