diff --git a/src/lib/commands/coll.c b/src/lib/commands/coll.c index 746c86d6..f9cae464 100644 --- a/src/lib/commands/coll.c +++ b/src/lib/commands/coll.c @@ -53,13 +53,13 @@ coll(void) register int i; register int val; time_t now; - s_char *p; + char *p; struct lonstr loan; struct sctstr sect; coord x, y; double owed; double pay; - s_char buf[1024]; + char buf[1024]; if (!opt_LOANS) { pr("Loans are not enabled.\n"); diff --git a/src/lib/commands/fina.c b/src/lib/commands/fina.c index e34075ee..c8056af2 100644 --- a/src/lib/commands/fina.c +++ b/src/lib/commands/fina.c @@ -64,7 +64,7 @@ fina(void) prdate(); pr("Loan From To Rate Dur Paid Total\n"); snxtitem(&ni, EF_LOAN, "*"); - while (nxtitem(&ni, (s_char *)&loan)) { + while (nxtitem(&ni, (caddr_t)&loan)) { if (loan.l_status != LS_SIGNED) continue; pr(" %-2d (%3d) %-8.8s (%3d) %-8.8s ", ni.cur, diff --git a/src/lib/commands/repa.c b/src/lib/commands/repa.c index e19fb96b..ae5cf630 100644 --- a/src/lib/commands/repa.c +++ b/src/lib/commands/repa.c @@ -50,9 +50,9 @@ repa(void) int loan_num; int payment; long newdue; - s_char *cp; + char *cp; time_t now; - s_char buf[1024]; + char buf[1024]; if (!opt_LOANS) { pr("Loans are not enabled.\n"); diff --git a/src/lib/commands/shark.c b/src/lib/commands/shark.c index 98bcaeff..3d8896b6 100644 --- a/src/lib/commands/shark.c +++ b/src/lib/commands/shark.c @@ -57,7 +57,7 @@ shark(void) struct natstr *oldie; double owed; long payment; - s_char buf[1024]; + char buf[1024]; if (!opt_LOANS) { pr("Loans are not enabled.\n");