Skip to content

Commit f5f25c8

Browse files
WinterMuteDacoTaco
authored andcommitted
get rid of magic number
1 parent e1ebcd8 commit f5f25c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libogc/kprintf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ static void _dietPrintDefaultFunc(const char* buf, size_t size)
1515
for (size_t i= 0; i < size; i ++)
1616
{
1717
char space = ' ';
18-
write(2,&space,1);
18+
write(STDOUT_FILENO,&space,1);
1919
}
2020
}
2121
}

0 commit comments

Comments
 (0)