diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-11-12 23:02:50 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-11-12 23:02:50 +0200 |
commit | 3b0ec209b9630bd4f8689a4ecc5544c419ebd259 (patch) | |
tree | eb66d3bf2169ba8b9af416bcc35bcf4e6c7e919e | |
parent | efddae1261ed612c21efcbfabb2cabe7c16021f1 (diff) | |
download | egawk-3b0ec209b9630bd4f8689a4ecc5544c419ebd259.tar.gz egawk-3b0ec209b9630bd4f8689a4ecc5544c419ebd259.tar.bz2 egawk-3b0ec209b9630bd4f8689a4ecc5544c419ebd259.zip |
Fix pc os_isreadable.
-rw-r--r-- | pc/ChangeLog | 4 | ||||
-rw-r--r-- | pc/gawkmisc.pc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 0defb81a..77159fe0 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,7 @@ +2012-11-12 Arnold D. Robbins <arnold@skeeve.com> + + * gawkmisc.pc (os_isreadable): Use correct type for first parameter. + 2012-11-04 Scott Deifik <scottd.mail@sbcglobal.net> * Makefile.tst (jarebug, charasbytes): Update. diff --git a/pc/gawkmisc.pc b/pc/gawkmisc.pc index e2f114e4..e44191cd 100644 --- a/pc/gawkmisc.pc +++ b/pc/gawkmisc.pc @@ -235,7 +235,7 @@ int fd; /* os_isreadable --- fd can be read from */ int -os_isreadable(const IOBUF_PUBLIC *iobuf, bool *isdir) +os_isreadable(const awk_input_buf_t *iobuf, bool *isdir) { *isdir = false; |