diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-03-17 22:54:21 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-03-17 22:54:21 +0200 |
commit | 603eb56251817ac19491b7671ed01402b2d7399c (patch) | |
tree | 0cd41c369f4e81c0d6bc6142ddd15e44483a87f5 /extension/inplace.c | |
parent | 22af5b89f1f31f31b53ef2dd17637ed77353e762 (diff) | |
parent | cd2ff61aaf4938092517880ad7655828d99a3cb9 (diff) | |
download | egawk-603eb56251817ac19491b7671ed01402b2d7399c.tar.gz egawk-603eb56251817ac19491b7671ed01402b2d7399c.tar.bz2 egawk-603eb56251817ac19491b7671ed01402b2d7399c.zip |
Merge branch 'master' into wasted-byte
Diffstat (limited to 'extension/inplace.c')
-rw-r--r-- | extension/inplace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/inplace.c b/extension/inplace.c index 0693ad92..e3685e30 100644 --- a/extension/inplace.c +++ b/extension/inplace.c @@ -171,10 +171,10 @@ do_inplace_begin(int nargs, awk_value_t *result) /* N.B. chown/chmod should be more portable than fchown/fchmod */ if (chown(state.tname, sbuf.st_uid, sbuf.st_gid) < 0) { - /* jumping through hoops to silence gcc. :-( */ + /* jumping through hoops to silence gcc and clang. :-( */ int junk; junk = chown(state.tname, -1, sbuf.st_gid); - junk = junk; + ++junk; } if (chmod(state.tname, sbuf.st_mode) < 0) |