diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-03-23 21:24:27 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-03-23 21:24:27 +0200 |
commit | eab8c54a43c4f1e7827b28f0e4e0e3b2d6643b97 (patch) | |
tree | 64e9172ccb4275603a8d39d5f4059754b4508a40 /extension/revtwoway.c | |
parent | 1bb38a7e6f81712d8ca8b59922abb176a735dd1f (diff) | |
download | egawk-eab8c54a43c4f1e7827b28f0e4e0e3b2d6643b97.tar.gz egawk-eab8c54a43c4f1e7827b28f0e4e0e3b2d6643b97.tar.bz2 egawk-eab8c54a43c4f1e7827b28f0e4e0e3b2d6643b97.zip |
Fix compile warnings in some of the extensions.
Diffstat (limited to 'extension/revtwoway.c')
-rw-r--r-- | extension/revtwoway.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extension/revtwoway.c b/extension/revtwoway.c index ac4e22cf..84989bfc 100644 --- a/extension/revtwoway.c +++ b/extension/revtwoway.c @@ -133,7 +133,8 @@ close_two_proc_data(two_way_proc_data_t *proc_data) static int rev2way_get_record(char **out, awk_input_buf_t *iobuf, int *errcode, - char **rt_start, size_t *rt_len) + char **rt_start, size_t *rt_len, + const awk_fieldwidth_info_t **unused) { int len = 0; /* for now */ two_way_proc_data_t *proc_data; |