Browse Source

Use "dbg_stream" rather than "stream" as a variable name in

DBG_AC_IF(), to avoid namespace collisions.
tags/v0.9.3
Michael Brown 17 years ago
parent
commit
395c76e94d
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/include/compiler.h

+ 3
- 3
src/include/compiler.h View File

@@ -198,9 +198,9 @@ extern void dbg_hex_dump_da ( unsigned long dispaddr,
198 198
 			union {					\
199 199
 				unsigned long ul;		\
200 200
 				typeof ( id ) raw;		\
201
-			} stream;				\
202
-			stream.raw = id;			\
203
-			dbg_autocolourise ( stream.ul );	\
201
+			} dbg_stream;				\
202
+			dbg_stream.raw = id;			\
203
+			dbg_autocolourise ( dbg_stream.ul );	\
204 204
 		}						\
205 205
 	} while ( 0 )
206 206
 

Loading…
Cancel
Save