소스 검색

* Change alias names in ContextNote

Bryan Drewery 16 년 전
부모
커밋
ec7153ae5e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/debug.h

+ 2 - 2
src/debug.h

@@ -13,8 +13,8 @@
   get_buf_inc(); \
 } while (0)
 
-#define ContextNote(from, buf) do { \
-  simple_snprintf(get_buf[current_get_buf], sizeof(get_buf[current_get_buf]), "%s: %s", from, buf); \
+#define ContextNote(_from, _buf) do { \
+  simple_snprintf(get_buf[current_get_buf], sizeof(get_buf[current_get_buf]), "%s: %s", _from, _buf); \
   get_buf_inc(); \
 } while(0)