Arguments to cleanup are not needed.

This commit is contained in:
Christoph Lohmann 2020-12-20 14:40:03 +01:00
parent 6837d1b5e6
commit 626219d14e

View File

@ -17,7 +17,7 @@ char **p; /* the slides */
int n; /* the number of slides */ int n; /* the number of slides */
void void
cleanup(int s) cleanup(void)
{ {
int i; int i;
@ -151,7 +151,7 @@ again:
} }
/* unmap mem */ /* unmap mem */
cleanup(0); cleanup();
return (0); return (0);
} }