(asctoeg): Fix backward condition in last change.
authorRichard Stallman <rms@gnu.org>
Mon, 11 Oct 1993 03:00:41 +0000 (03:00 +0000)
committerRichard Stallman <rms@gnu.org>
Mon, 11 Oct 1993 03:00:41 +0000 (03:00 +0000)
From-SVN: r5719

gcc/real.c

index b6b55a5..09d0a22 100644 (file)
@@ -4647,8 +4647,8 @@ asctoeg (ss, y, oprec)
   while (*s == ' ')            /* skip leading spaces */
     ++s;
   sp = lstr;
-  while ((*sp++ = *s++) == '\0')
-       ;
+  while ((*sp++ = *s++) != '\0')
+    ;
   s = lstr;
 
   rndsav = rndprc;