diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-03-05 06:00:03 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-03-05 06:00:03 +0200 |
commit | a76a789747458e3690e44ee81332099a3f80c156 (patch) | |
tree | ed4622b719fe6e8d1f466f587f7bd25455b7337c /awkgram.c | |
parent | abe4984928229338afd2dc9bbeb95bb9f361ef94 (diff) | |
download | egawk-a76a789747458e3690e44ee81332099a3f80c156.tar.gz egawk-a76a789747458e3690e44ee81332099a3f80c156.tar.bz2 egawk-a76a789747458e3690e44ee81332099a3f80c156.zip |
Continue to straighten out enum usage.
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4675,7 +4675,7 @@ parse_program(INSTRUCTION **pcode) /* do_add_srcfile --- add one item to srcfiles */ static SRCFILE * -do_add_srcfile(int stype, char *src, char *path, SRCFILE *thisfile) +do_add_srcfile(enum srctype stype, char *src, char *path, SRCFILE *thisfile) { SRCFILE *s; @@ -4697,7 +4697,7 @@ do_add_srcfile(int stype, char *src, char *path, SRCFILE *thisfile) */ SRCFILE * -add_srcfile(int stype, char *src, SRCFILE *thisfile, bool *already_included, int *errcode) +add_srcfile(enum srctype stype, char *src, SRCFILE *thisfile, bool *already_included, int *errcode) { SRCFILE *s; struct stat sbuf; |