From 7baf2c51f930de87d42ccf79abe700714ac3195e Mon Sep 17 00:00:00 2001 From: James Youngman Date: Sun, 11 Apr 2010 16:48:21 +0200 Subject: [PATCH] close-stream: declare local scalars to be "const" * lib/close-stream.c (close_stream): Make boolean variables const to document the fact that we set but do not change them. --- ChangeLog | 6 ++++++ lib/close-stream.c | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 041e8f716..a3acc98e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-04-11 James Youngman + + close-stream: declare local scalars to be "const" + * lib/close-stream.c (close_stream): Make boolean variables const + to document the fact that we set but do not change them. + 2010-04-11 Bruno Haible * m4/libunistring.m4 (gl_LIBUNISTRING): Fix typo in comment. diff --git a/lib/close-stream.c b/lib/close-stream.c index cf0422f3d..87a59e4ee 100644 --- a/lib/close-stream.c +++ b/lib/close-stream.c @@ -55,9 +55,9 @@ int close_stream (FILE *stream) { - bool some_pending = (__fpending (stream) != 0); - bool prev_fail = (ferror (stream) != 0); - bool fclose_fail = (fclose (stream) != 0); + const bool some_pending = (__fpending (stream) != 0); + const bool prev_fail = (ferror (stream) != 0); + const bool fclose_fail = (fclose (stream) != 0); /* Return an error indication if there was a previous failure or if fclose failed, with one exception: ignore an fclose failure if -- 2.11.0