fixed bug: did not convert 0 right

This commit is contained in:
ceriel 1988-04-25 18:13:32 +00:00
parent 264773ee06
commit d9638fca0e

View file

@ -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 */