From b1f00493078c189ea41a846aee0aa3b9330f490c Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sat, 21 Apr 2007 05:35:17 +0000 Subject: Fix the undefined char symbols appearing in many output lines. This printf does neither support nor need \n. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13229 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/midiplay.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/plugins/midiplay.c') diff --git a/apps/plugins/midiplay.c b/apps/plugins/midiplay.c index 1e3a62b58a..8d8b7833af 100644 --- a/apps/plugins/midiplay.c +++ b/apps/plugins/midiplay.c @@ -133,7 +133,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) rb->cpu_boost(true); #endif - printf("\n%s", parameter); + printf("%s", parameter); /* rb->splash(HZ, true, parameter); */ #ifdef RB_PROFILE @@ -218,12 +218,12 @@ int midimain(void * filename) { int notesUsed = 0; int a=0; - printf("\nLoading file"); + printf("Loading file"); mf= loadFile(filename); if(mf == NULL) { - printf("\nError loading file."); + printf("Error loading file."); return -1; } @@ -245,7 +245,7 @@ int midimain(void * filename) * This seems to work quite well. On a laptop, anyway. */ - printf("\nOkay, starting sequencing"); + printf("Okay, starting sequencing"); bpm=mf->div*1000000/tempo; numberOfSamples=SAMPLE_RATE/bpm; -- cgit v1.2.3