whitespace updates
authorMike Frysinger <vapier@gentoo.org>
Sat, 11 Jun 2005 00:09:24 +0000 (00:09 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sat, 11 Jun 2005 00:09:24 +0000 (00:09 -0000)
e2fsprogs/uuid/pack.c
e2fsprogs/uuid/unpack.c

index 348d432135d5d120bb6b0d58b8d7a3a5f8c55de9..1013886e589a62e6a1f591c9f218b385d47e0dbd 100644 (file)
@@ -37,8 +37,8 @@
 
 void uuid_pack(const struct uuid *uu, uuid_t ptr)
 {
-       uint32_t        tmp;
-       unsigned char   *out = ptr;
+       uint32_t tmp;
+       unsigned char *out = ptr;
 
        tmp = uu->time_low;
        out[3] = (unsigned char) tmp;
@@ -48,7 +48,7 @@ void uuid_pack(const struct uuid *uu, uuid_t ptr)
        out[1] = (unsigned char) tmp;
        tmp >>= 8;
        out[0] = (unsigned char) tmp;
-       
+
        tmp = uu->time_mid;
        out[5] = (unsigned char) tmp;
        tmp >>= 8;
@@ -66,4 +66,3 @@ void uuid_pack(const struct uuid *uu, uuid_t ptr)
 
        memcpy(out+10, uu->node, 6);
 }
-
index 9502fc2a6413260d19a36a311ce4a177b284569b..d63589521ef69ece0e7129b04f6fb7636ea0727b 100644 (file)
@@ -37,8 +37,8 @@
 
 void uuid_unpack(const uuid_t in, struct uuid *uu)
 {
-       const uint8_t   *ptr = in;
-       uint32_t                tmp;
+       const uint8_t *ptr = in;
+       uint32_t tmp;
 
        tmp = *ptr++;
        tmp = (tmp << 8) | *ptr++;
@@ -49,7 +49,7 @@ void uuid_unpack(const uuid_t in, struct uuid *uu)
        tmp = *ptr++;
        tmp = (tmp << 8) | *ptr++;
        uu->time_mid = tmp;
-       
+
        tmp = *ptr++;
        tmp = (tmp << 8) | *ptr++;
        uu->time_hi_and_version = tmp;
@@ -60,4 +60,3 @@ void uuid_unpack(const uuid_t in, struct uuid *uu)
 
        memcpy(uu->node, ptr, 6);
 }
-