Commit a9456cd3 by Richard Stallman

(asctoeg): Fix backward condition in last change.

From-SVN: r5719
parent e8cfae5c
...@@ -4647,7 +4647,7 @@ asctoeg (ss, y, oprec) ...@@ -4647,7 +4647,7 @@ asctoeg (ss, y, oprec)
while (*s == ' ') /* skip leading spaces */ while (*s == ' ') /* skip leading spaces */
++s; ++s;
sp = lstr; sp = lstr;
while ((*sp++ = *s++) == '\0') while ((*sp++ = *s++) != '\0')
; ;
s = lstr; s = lstr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment