9
0
Fork 0

[sparse] don't return sth in a void function

fixed
include/stdio.h:23:2: warning: returning void-valued expression

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
Marc Kleine-Budde 2007-11-15 23:10:04 +01:00
parent 039248654a
commit 17e0a74ed3
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ int getc(void);
void console_puts(unsigned int ch, const char *s);
static inline void puts(const char *s) {
return console_puts(CONSOLE_STDOUT, s);
console_puts(CONSOLE_STDOUT, s);
}
static inline void putchar(char c) {