summaryrefslogtreecommitdiffstats
path: root/src/include/compiler.h
diff options
context:
space:
mode:
authorMichael Brown2007-01-30 11:12:19 +0100
committerMichael Brown2007-01-30 11:12:19 +0100
commit395c76e94de278921130df0a48beaf45c5781e3c (patch)
tree20ba06d1f360335e72f12941ef693a5badfa7eee /src/include/compiler.h
parentDon't call PXENV_STOP_UNDI in the kpxeprefix. This slighy breaks the (diff)
downloadipxe-395c76e94de278921130df0a48beaf45c5781e3c.tar.gz
ipxe-395c76e94de278921130df0a48beaf45c5781e3c.tar.xz
ipxe-395c76e94de278921130df0a48beaf45c5781e3c.zip
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 643ab250..18ca75c9 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 )