1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jens Arnold 2007-04-21 05:35:17 +00:00
parent c69f032df4
commit b1f0049307
5 changed files with 31 additions and 31 deletions

View file

@ -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;