From: Richard Stallman Date: Mon, 11 Oct 1993 03:00:41 +0000 (+0000) Subject: (asctoeg): Fix backward condition in last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a9456cd320e16d4217d34d3928ed4d99fb12cbc8;p=gcc.git (asctoeg): Fix backward condition in last change. From-SVN: r5719 --- diff --git a/gcc/real.c b/gcc/real.c index b6b55a52ff7..09d0a221104 100644 --- a/gcc/real.c +++ b/gcc/real.c @@ -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;