diff th_endian.h @ 10:a25f5d22483e

Updates.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 20 Apr 2009 00:01:43 +0300
parents 8552edc844a7
children 598609fb49b0
line wrap: on
line diff
--- a/th_endian.h	Tue Feb 10 06:53:46 2009 +0200
+++ b/th_endian.h	Mon Apr 20 00:01:43 2009 +0300
@@ -21,7 +21,7 @@
 
 /* Endianess swapping macros
  */
-#define TH_SWAP_16_LE_BE(value)	((uint16_t) (   \
+#define TH_SWAP_16_LE_BE(value)    ((uint16_t) (   \
     (uint16_t) ((uint16_t) (value) >> 8) |      \
     (uint16_t) ((uint16_t) (value) << 8)) )