diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-15 20:09:50 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-15 20:09:50 +0200 |
commit | 0edba9c48374579777c298b11cc351c4c1634dc7 (patch) | |
tree | 2ebb371bb199a5d902c6857fad2ba53d28091c4f | |
parent | 08e502f6f13b8fb41d2ea169f59335b399695deb (diff) | |
download | egawk-0edba9c48374579777c298b11cc351c4c1634dc7.tar.gz egawk-0edba9c48374579777c298b11cc351c4c1634dc7.tar.bz2 egawk-0edba9c48374579777c298b11cc351c4c1634dc7.zip |
Remove an unused variable.
-rw-r--r-- | extension/ChangeLog | 2 | ||||
-rw-r--r-- | extension/inplace.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog index 909e70ba..e31c6909 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -5,6 +5,8 @@ readfile.3am, revoutput.3am, revtwoway.3am, rwarray.3am, time.3am: Update copyright dates, add reference to inplace(3am). + * inplace.c (do_inplace_begin): Remove unused variable `p'. + 2013-01-10 Andrew J. Schorr <aschorr@telemetry-investments.com> * inplace.c (do_inplace_begin): No need to get the 2nd suffix argument, diff --git a/extension/inplace.c b/extension/inplace.c index 31f21b60..e2183c1f 100644 --- a/extension/inplace.c +++ b/extension/inplace.c @@ -95,7 +95,6 @@ do_inplace_begin(int nargs, awk_value_t *result) { awk_value_t filename; struct stat sbuf; - char *p; int fd; assert(result != NULL); |