Skip to content

Commit

Permalink
fix printf format
Browse files Browse the repository at this point in the history
  • Loading branch information
hops committed Apr 13, 2018
1 parent 053e73e commit ea7f93b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,8 +693,8 @@ int main(int argc, char *argv[]) {
JSLFA(rc, Righthex[x]);
memsum += rc;
}
printf("%zu lines written\n", linecnt);
printf("%zu total memory used\n", memsum);
printf("%lu lines written\n", linecnt);
printf("%lu total memory used\n", memsum);

return (0);
}
Expand Down

0 comments on commit ea7f93b

Please sign in to comment.