Release calc version 2.11.0t2

This commit is contained in:
Landon Curt Noll
1999-09-24 17:14:22 -07:00
parent bad4535616
commit 4b98d5ff0e
12 changed files with 416 additions and 47 deletions

View File

@@ -241,8 +241,8 @@ convhex2z(char *hex)
/* slen is even now */
/* eat two hex chars at a time until the HALF is full */
for (; (slen % (BASEB/4)) != 0; slen -= 2) {
*hp = ((*hp<<8) | hex2bin(*sp++, *sp++));
for (; (slen % (BASEB/4)) != 0; slen -= 2, sp += 2) {
*hp = ((*hp<<8) | hex2bin(sp[0], sp[1]));
}
/* move on to the next HALF */