浏览代码

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 年前
父节点
当前提交
395c76e94d
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      src/include/compiler.h

+ 3
- 3
src/include/compiler.h 查看文件

@@ -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
 

正在加载...
取消
保存