diff options
author | Mike Frysinger | 2005-06-11 00:09:24 +0000 |
---|---|---|
committer | Mike Frysinger | 2005-06-11 00:09:24 +0000 |
commit | e2c51a8dc66441eabc817e5dd43101d0fcccda00 (patch) | |
tree | 83c9796032f12113a262429dacf446e28093e36c /e2fsprogs/uuid/unpack.c | |
parent | 85cffcc83dfa8471c458789474513171ff9281df (diff) | |
download | busybox-e2c51a8dc66441eabc817e5dd43101d0fcccda00.zip busybox-e2c51a8dc66441eabc817e5dd43101d0fcccda00.tar.gz |
whitespace updates
Diffstat (limited to 'e2fsprogs/uuid/unpack.c')
-rw-r--r-- | e2fsprogs/uuid/unpack.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/e2fsprogs/uuid/unpack.c b/e2fsprogs/uuid/unpack.c index 9502fc2..d635895 100644 --- a/e2fsprogs/uuid/unpack.c +++ b/e2fsprogs/uuid/unpack.c @@ -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); } - |