9
0
Fork 0

debug_ll: use const char* for PUTS_LL

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2012-10-28 10:15:09 +01:00 committed by Sascha Hauer
parent 3510a4b0f5
commit 5610393bc6
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
ch += (ch >= 10) ? 'a' - 10 : '0';\
PUTC_LL (ch); }})
static __inline__ void PUTS_LL(char * str)
static __inline__ void PUTS_LL(const char * str)
{
while (*str) {
if (*str == '\n') {