From be6120b5ccc02f4a9a0216f9d43eabdeb5f0dba0 Mon Sep 17 00:00:00 2001 From: Bernhard Voelker Date: Thu, 14 Jul 2011 11:56:23 +0100 Subject: maint: fix warning 'possible use of "=" where "==" was intended' * src/mktemp.c: maint: avoid warning by using the comma operator rather than an always-true conditional (as suggested by Eric Blake). Reported by Joachim Schmitz in http://debbugs.gnu.org/9064. --- src/mktemp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mktemp.c') diff --git a/src/mktemp.c b/src/mktemp.c index 2fe22b76b..e592176a7 100644 --- a/src/mktemp.c +++ b/src/mktemp.c @@ -344,7 +344,7 @@ main (int argc, char **argv) puts (dest_name); /* If we created a file, but then failed to output the file name, we should clean up the mess before failing. */ - if (!dry_run && (stdout_closed = true) && close_stream (stdout) != 0) + if (!dry_run && ((stdout_closed = true), close_stream (stdout) != 0)) { int saved_errno = errno; remove (dest_name); -- cgit v1.2.3-54-g00ecf