From a9456cd320e16d4217d34d3928ed4d99fb12cbc8 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Mon, 11 Oct 1993 03:00:41 +0000 Subject: [PATCH] (asctoeg): Fix backward condition in last change. From-SVN: r5719 --- gcc/real.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/real.c b/gcc/real.c index b6b55a5..09d0a22 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; -- 2.7.4