From 2017af5713c54489bcea7d28a04a6b118d81ef12 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Mon, 9 Apr 2012 19:50:30 -0400 Subject: [PATCH] Formatting --- typedef.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typedef.c b/typedef.c index 70a2fe4..9994e55 100644 --- 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) { -- 2.39.2