Explorar el Código

* Change alias names in ContextNote

Bryan Drewery hace 16 años
padre
commit
ec7153ae5e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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)