diff options
| author | Michael Brown | 2007-01-30 11:12:19 +0100 |
|---|---|---|
| committer | Michael Brown | 2007-01-30 11:12:19 +0100 |
| commit | 395c76e94de278921130df0a48beaf45c5781e3c (patch) | |
| tree | 20ba06d1f360335e72f12941ef693a5badfa7eee | |
| parent | Don't call PXENV_STOP_UNDI in the kpxeprefix. This slighy breaks the (diff) | |
| download | ipxe-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.
| -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 ) |
