There is no printf() in rockbox, but DEBUGF() has the intended effect in simulator.
And this was the last warning in iriver builds :D


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6713 a1c6a512-1295-4272-9138-f99709370657
diff --git a/apps/codecs/dumb/src/it/xmeffect.c b/apps/codecs/dumb/src/it/xmeffect.c
index 81b86c9..a635039 100644
--- a/apps/codecs/dumb/src/it/xmeffect.c
+++ b/apps/codecs/dumb/src/it/xmeffect.c
@@ -86,7 +86,7 @@
 		return;
 
 #ifdef SIMULATOR
-if (log) printf("%c%02X", (effect<10)?('0'+effect):('A'+effect-10), value);
+if (log) DEBUGF("%c%02X", (effect<10)?('0'+effect):('A'+effect-10), value);
 #endif 
 
 	/* Linearisation of the effect number... */
@@ -99,7 +99,7 @@
 	}
 
 #ifdef SIMULATOR
-if (log) printf(" - %2d %02X", effect, value);
+if (log) DEBUGF(" - %2d %02X", effect, value);
 #endif 
 
 #if 0 // This should be handled in itrender.c!
@@ -234,7 +234,7 @@
 	}
 
 #ifdef SIMULATOR
-if (log) printf(" - %2d %02X", effect, value);
+if (log) DEBUGF(" - %2d %02X", effect, value);
 #endif
  
 	/* Inverse linearisation... */
@@ -244,7 +244,7 @@
 	}
 
 #ifdef SIMULATOR
-if (log) printf(" - %c%02X\n", 'A'+effect-1, value);
+if (log) DEBUGF(" - %c%02X\n", 'A'+effect-1, value);
 #endif
  
 	entry->effect = effect;