From d9638fca0e58187c62bdd26ca8d485e2cdb15a4a Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 25 Apr 1988 18:13:32 +0000 Subject: [PATCH] fixed bug: did not convert 0 right --- mach/proto/fp/cuf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.34.1