Release calc version 2.12.0.1

This commit is contained in:
Landon Curt Noll
2006-05-22 12:06:21 -07:00
parent 58d94b08d8
commit 23a5fc3ede
8 changed files with 28 additions and 27 deletions

View File

@@ -1398,8 +1398,8 @@ showstrings(void)
for (j = 0; j < STRALLOC; j++, k++, sp++) {
if (sp->s_links > 0) {
++count;
printf("%5ld %5ld %6u \"",
k, sp->s_links, sp->s_len);
printf("%5ld %5ld %6ld \"",
k, sp->s_links, (long int)sp->s_len);
fitstring(sp->s_str, sp->s_len, 50);
printf("\"\n");
}
@@ -1423,8 +1423,8 @@ showliterals(void)
sp = stringconsttable[i];
if (sp->s_links > 0) {
++count;
printf("%5ld %5ld %6u \"",
i, sp->s_links, sp->s_len);
printf("%5ld %5ld %6ld \"",
i, sp->s_links, (long int)sp->s_len);
fitstring(sp->s_str, sp->s_len, 50);
printf("\"\n");
}