jn516x platform: fix compiler warnings to enable -Wall -Werror compilation
This commit is contained in:
parent
48ae0d2ba0
commit
c13274c550
7 changed files with 14 additions and 11 deletions
|
@ -227,7 +227,7 @@ int
|
|||
puts(const char *s)
|
||||
{
|
||||
char c;
|
||||
while(c = *s++) {
|
||||
while((c = *s++) != '\0') {
|
||||
putchar(c);
|
||||
}
|
||||
putchar('\n');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue