aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/compiler.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2007-01-30 10:12:19 +0000
committerMichael Brown <mcb30@etherboot.org>2007-01-30 10:12:19 +0000
commit395c76e94de278921130df0a48beaf45c5781e3c (patch)
tree20ba06d1f360335e72f12941ef693a5badfa7eee /src/include/compiler.h
parent7d9267561b6ece59624e7dc0d521535d56278646 (diff)
downloadipxe-395c76e94de278921130df0a48beaf45c5781e3c.tar.gz
Use "dbg_stream" rather than "stream" as a variable name in
DBG_AC_IF(), to avoid namespace collisions.
Diffstat (limited to 'src/include/compiler.h')
-rw-r--r--src/include/compiler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/compiler.h b/src/include/compiler.h
index 643ab250e..18ca75c96 100644
--- a/src/include/compiler.h
+++ b/src/include/compiler.h
@@ -198,9 +198,9 @@ extern void dbg_hex_dump_da ( unsigned long dispaddr,
union { \
unsigned long ul; \
typeof ( id ) raw; \
- } stream; \
- stream.raw = id; \
- dbg_autocolourise ( stream.ul ); \
+ } dbg_stream; \
+ dbg_stream.raw = id; \
+ dbg_autocolourise ( dbg_stream.ul ); \
} \
} while ( 0 )