grep-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

grep branch, master, updated. v3.1-10-gdbf6efe


From: Paul Eggert
Subject: grep branch, master, updated. v3.1-10-gdbf6efe
Date: Mon, 21 Aug 2017 14:08:39 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grep".

The branch, master has been updated
       via  dbf6efe68c6d97a66ad20a4d5d2935a520bf4bd7 (commit)
      from  5b9e55e885b4ac4e82518195f79bd5e2108a2d6c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=dbf6efe68c6d97a66ad20a4d5d2935a520bf4bd7


commit dbf6efe68c6d97a66ad20a4d5d2935a520bf4bd7
Author: Paul Eggert <address@hidden>
Date:   Mon Aug 21 11:06:47 2017 -0700

    Pacify GCC 5.4
    
    * src/grep.c (grepdesc): Rework to pacify GCC 5.4 warning
    about logical not.

diff --git a/src/grep.c b/src/grep.c
index 5847c7a..2277a60 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1863,7 +1863,7 @@ grepdesc (int desc, bool command_line)
         fflush_errno ();
     }
 
-  status = !count != (list_files == LISTFILES_NONMATCHING);
+  status = !count == !(list_files == LISTFILES_NONMATCHING);
 
   if (list_files == LISTFILES_NONE)
     finalize_input (desc, &st, ineof);

-----------------------------------------------------------------------

Summary of changes:
 src/grep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
grep



reply via email to

[Prev in Thread] Current Thread [Next in Thread]