hlint: use CamelCase for printf stuff
[mate.git] / debug.h
diff --git a/debug.h b/debug.h
index 58fbf3b563da5ed97c5471030e7e928536dadf90..633b89107e41b228e0aca2fabd0167893c7f374e 100644 (file)
--- a/debug.h
+++ b/debug.h
@@ -3,7 +3,7 @@
  * DBG_MP ..... MethodPool.hs
  * DBG_CP ..... ClassPool.hs
  * DBG_STR .... Strings.hs
- * // no printf_* defined
+ * // no printf* defined
  * DBG_TRAP ... show information @ trap.c
  * DBG_CLASS .. dump classfile
  */
 #endif
 
 /* it would be awesome if we could just write
- * > printf_fake = printf
+ * > printfFake = printf
  * here, but the type can't be infered, since `PrintfType'
  * isn't visible (at least this is my explanation :/).
  * if I'm wrong, move this to `Mate/Debug.hs'
  */
 #ifdef DBG_JIT
-#define printf_jit printf
+#define printfJit printf
 #endif
 
 #ifdef DBG_BB
-#define printf_bb printf
+#define printfBb printf
 #endif
 
 #ifdef DBG_MP
-#define printf_mp printf
+#define printfMp printf
 #endif
 
 #ifdef DBG_CP
-#define printf_cp printf
+#define printfCp printf
 #endif
 
 #ifdef DBG_STR
-#define printf_str printf
+#define printfStr printf
 #endif