FRONTPANEL: Fix clang compiler warning
This commit is contained in:
parent
c4e55d0f6b
commit
c494e1a120
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ while (1) {
|
||||||
buf_size = len + 1;
|
buf_size = len + 1;
|
||||||
buf[buf_size] = '\0';
|
buf[buf_size] = '\0';
|
||||||
}
|
}
|
||||||
while (c = strstr (buf, "\r\n"))
|
while ((c = strstr (buf, "\r\n")))
|
||||||
memmove (c, c + 1, strlen (c));
|
memmove (c, c + 1, strlen (c));
|
||||||
printw ("%s", buf);
|
printw ("%s", buf);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue