Kaydet (Commit) 37d5a15e authored tarafından Thomas Heller's avatar Thomas Heller

Whitespace normalization.

üst 3e1c18ad
...@@ -91,10 +91,10 @@ w_short(int x, WFILE *p) ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment