aboutsummaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2012-09-15 12:17:37 -0400
committerKevin O'Connor <kevin@koconnor.net>2012-09-15 12:17:37 -0400
commit30e6af0dcd8d967c083311f3a105a68ac5e158e7 (patch)
tree7a98254293fc0678a881ae58cafd580b3c7963c2 /src/types.h
parent455a7c87e8227d83b7bd8982285fed95546cb8c9 (diff)
downloadseabios-hppa-30e6af0dcd8d967c083311f3a105a68ac5e158e7.zip
seabios-hppa-30e6af0dcd8d967c083311f3a105a68ac5e158e7.tar.gz
seabios-hppa-30e6af0dcd8d967c083311f3a105a68ac5e158e7.tar.bz2
Fix 'union u64_u32_u' member names.
Use 'lo' to mean the low bits and 'hi' to mean the high bits of a 64bit value. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.h b/src/types.h
index b10f3b3..24b078e 100644
--- a/src/types.h
+++ b/src/types.h
@@ -17,7 +17,7 @@ typedef signed long long s64;
typedef u32 size_t;
union u64_u32_u {
- struct { u32 hi, lo; };
+ struct { u32 lo, hi; };
u64 val;
};