]> git.ozlabs.org Git - ccan/blobdiff - ccan/endian/endian.h
tdb2: tdb_expand on empty database now tested.
[ccan] / ccan / endian / endian.h
index 7f601f9ac2f74c6740531fede916d41b39ce64f0..81db5d948f368505375a81f32fee7591d065973d 100644 (file)
@@ -21,7 +21,7 @@ static inline uint32_t swab_u32(uint32_t val)
 {
        return ((val & (uint32_t)0x000000ffUL) << 24)
                | ((val & (uint32_t)0x0000ff00UL) <<  8)
-               | ((val & (uint32_t)0x00ff0000UL) >>  8) 
+               | ((val & (uint32_t)0x00ff0000UL) >>  8)
                | ((val & (uint32_t)0xff000000UL) >> 24);
 }