From: ceriel Date: Mon, 25 Apr 1988 18:13:32 +0000 (+0000) Subject: fixed bug: did not convert 0 right X-Git-Tag: release-5-5~3330 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=d9638fca0e58187c62bdd26ca8d485e2cdb15a4a;p=ack.git fixed bug: did not convert 0 right --- diff --git a/mach/proto/fp/cuf8.c b/mach/proto/fp/cuf8.c index d2b9dd05b..70ee14c1a 100644 --- a/mach/proto/fp/cuf8.c +++ b/mach/proto/fp/cuf8.c @@ -38,7 +38,7 @@ long src; /* largest possible integer to convert */ fprintf(stderr,"CUF8(ds(%d),ss(%d),src(%D))\n\n",8,ss,i_src); #endif if (i_src == 0) { - zrf8(&src); + zrf8(&ss); return; } /* ESTABLISHED THAT src != 0 */