]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Formatting
authorDale Weiler <killfieldengine@gmail.com>
Mon, 9 Apr 2012 23:50:30 +0000 (19:50 -0400)
committerDale Weiler <killfieldengine@gmail.com>
Mon, 9 Apr 2012 23:50:30 +0000 (19:50 -0400)
typedef.c

index 70a2fe4018ffef5eccd27b5f74185093d414e29d..9994e551f11f3d84889ef308ae779f7df7d83914 100644 (file)
--- a/typedef.c
+++ b/typedef.c
@@ -71,7 +71,7 @@ void typedef_init() {
  *     in the creation of the content, though an attribution to the author
  *     is not necessary.
  * 
- *     Paul Hsieh exposition license
+ *  Paul Hsieh exposition license
  *
  *     The content of all text, figures, tables and displayed layout is
  *     copyrighted by its author and owner Paul Hsieh unless specifically
@@ -96,9 +96,9 @@ void typedef_init() {
  * Unalligned loads are faster if we can do them, otherwise fall back
  * to safer version below.
  */
-#      define load16(D) (*((const uint16_t*)(D)))
+#   define load16(D) (*((const uint16_t*)(D)))
 #else
-#      define load16(D) ((((uint32_t)(((const uint8_t*)(D))[1])) << 8) + \
+#   define load16(D) ((((uint32_t)(((const uint8_t*)(D))[1])) << 8) + \
                         (uint32_t)(((const uint8_t*)(D))[0]))
 #endif
 unsigned int inline typedef_hash(const char *data) {