mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove annoying -Wall warning.
This commit is contained in:
parent
c0d06fe463
commit
e6068a345f
1 changed files with 1 additions and 1 deletions
|
|
@ -257,7 +257,7 @@ escape(fmt)
|
|||
register char *store;
|
||||
register int value, c;
|
||||
|
||||
for (store = fmt; c = *fmt; ++fmt, ++store) {
|
||||
for (store = fmt; (c = *fmt); ++fmt, ++store) {
|
||||
if (c != '\\') {
|
||||
*store = c;
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue