home · contact · privacy
Minor code-stylistic adjustment.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 21 Jul 2013 04:02:46 +0000 (06:02 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 21 Jul 2013 04:02:46 +0000 (06:02 +0200)
src/readwrite.c

index 19fca5d007d79aa33f85e5f0883cdb24b8e796c4..449e96b4c3d5d5051e08d9d45a13864870ca9513 100644 (file)
@@ -7,18 +7,18 @@
 extern uint16_t read_uint16_bigendian( FILE * file )
 {
     uint16_t x;
-    x =     (uint16_t) fgetc(file) << 8 ;
-    x = x + (uint16_t) fgetc(file)      ;
+    x =     (uint16_t) fgetc(file) << 8;
+    x = x + (uint16_t) fgetc(file);
     return x;
 }
 
 extern uint32_t read_uint32_bigendian( FILE * file )
 {
     uint32_t x;
-    x =       (uint32_t) fgetc(file) << 24   ;
-    x = x + ( (uint32_t) fgetc(file) << 16 ) ;
-    x = x + ( (uint32_t) fgetc(file) <<  8 ) ;
-    x = x +   (uint32_t) fgetc(file)         ;
+    x =       (uint32_t) fgetc(file) << 24;
+    x = x + ( (uint32_t) fgetc(file) << 16 );
+    x = x + ( (uint32_t) fgetc(file) <<  8 );
+    x = x +   (uint32_t) fgetc(file);
     return x;
 }