print memory usage as unsigned
This commit is contained in:
parent
e35b40b793
commit
93c8b46781
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ main(argc,argv) register string argv[]; {
|
|||
fprintf(stderr, "number of tokens: %d\n", ntokens);
|
||||
fprintf(stderr, "number of term structures: %d\n", nterms);
|
||||
fprintf(stderr, "number of alternation structures: %d\n", nalts);
|
||||
fprintf(stderr, "total memory used: %d\n", sbrk(0) - (char *) &end);
|
||||
fprintf(stderr, "total memory used: %u\n", sbrk(0) - (char *) &end);
|
||||
}
|
||||
exit(0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue