Remove annoying -Wall warning.

This commit is contained in:
Steve Price 1996-10-06 02:40:39 +00:00
parent c0d06fe463
commit e6068a345f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18732

View file

@ -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;