diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2022-06-16 16:06:42 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2022-06-18 06:36:42 -0400 |
commit | a80c543bb9955199619a2cb6280b89a879fd8811 (patch) | |
tree | 414b0e11a3977659d7e888deb69fb122eb532085 /util | |
parent | a6685523e189c6330ba7007ecaf8f6d462b63024 (diff) |
fixes for gcc13 warnings
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'util')
-rw-r--r-- | util/makestrs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/makestrs.c b/util/makestrs.c index 4d5c0a6..10ceffb 100644 --- a/util/makestrs.c +++ b/util/makestrs.c @@ -345,6 +345,7 @@ WriteSourceLine(TableEnt * te, int abi, int fudge) { char *c; + (void) abi; for (c = te->right; *c; c++) (void) printf("'%c',", *c); (void) printf("%c", '0'); @@ -439,6 +440,7 @@ ArrayperWriteSource(int abi) File *phile; static int done_atom; + (void) abi; for (phile = file; phile; phile = phile->next) { Table *t; TableEnt *te; |