From bc319ba44872a8288c0bbbbfb0bee81f446d87e6 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Thu, 15 Apr 2010 11:19:00 -0700 Subject: [PATCH] * frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression. --- src/ChangeLog | 4 ++++ src/frame.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index a32558a2ac7..c962fe04af6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-04-15 Dan Nicolaescu + + * frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression. + 2010-04-14 Dan Nicolaescu Reduce cpp use in Makefile.in. diff --git a/src/frame.h b/src/frame.h index 36b0b6b069c..8f563ca9d77 100644 --- a/src/frame.h +++ b/src/frame.h @@ -793,7 +793,7 @@ typedef struct frame *FRAME_PTR; #define FRAME_SAMPLE_VISIBILITY(f) \ (((f)->async_visible && (f)->visible != (f)->async_visible) ? \ - SET_FRAME_GARBAGED (f) : 0, \ + SET_FRAME_GARBAGED (f) : \ (f)->visible = (f)->async_visible, \ (f)->iconified = (f)->async_iconified) -- 2.39.5