mirror of
https://github.com/ipxe/ipxe
synced 2026-02-06 21:29:29 +03:00
Use "dbg_stream" rather than "stream" as a variable name in
DBG_AC_IF(), to avoid namespace collisions.
This commit is contained in:
@@ -198,9 +198,9 @@ extern void dbg_hex_dump_da ( unsigned long dispaddr,
|
|||||||
union { \
|
union { \
|
||||||
unsigned long ul; \
|
unsigned long ul; \
|
||||||
typeof ( id ) raw; \
|
typeof ( id ) raw; \
|
||||||
} stream; \
|
} dbg_stream; \
|
||||||
stream.raw = id; \
|
dbg_stream.raw = id; \
|
||||||
dbg_autocolourise ( stream.ul ); \
|
dbg_autocolourise ( dbg_stream.ul ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user