chiark / gitweb /
util-lib: mark variable with _unused_ to silence clang warning
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 1 Nov 2017 22:01:24 +0000 (23:01 +0100)
committerSven Eden <yamakuzure@gmx.net>
Wed, 1 Nov 2017 22:01:24 +0000 (23:01 +0100)
commit22662de7edd00b87e5e8d8b4d76cda5a56344117
tree82b407dd14d77299a9564eb4d9c90950f4b221ff
parent24ed122798bcc6bf5f9652d4ea00768c29e3c6a0
util-lib: mark variable with _unused_ to silence clang warning

_unused_ means "the variable is meant to be possible unused and gcc
will not generate a warning about it", which is exactly what we need here,
since we're only declaring it for the side effect of _cleanup_.
src/basic/fileio.c