diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-01-30 10:12:19 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-01-30 10:12:19 +0000 |
commit | 395c76e94de278921130df0a48beaf45c5781e3c (patch) | |
tree | 20ba06d1f360335e72f12941ef693a5badfa7eee /src/include/compiler.h | |
parent | 7d9267561b6ece59624e7dc0d521535d56278646 (diff) | |
download | ipxe-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.h | 6 |
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 ) |