You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2017/01/18 01:16:19 UTC

[03/10] qpid-proton git commit: PROTON-1382: Remove bit fields initialization for bool fields

PROTON-1382: Remove bit fields initialization for bool fields

Signed-off-by: aboutros <ad...@live.com>


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/99616e6c
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/99616e6c
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/99616e6c

Branch: refs/heads/go1
Commit: 99616e6c25d9cd56d67f53cfd81f4149c47dc440
Parents: 98e26f6
Author: Adel Boutros <ad...@live.com>
Authored: Wed Jan 4 17:25:15 2017 +0100
Committer: Andrew Stitcher <as...@apache.org>
Committed: Tue Jan 17 02:28:24 2017 -0500

----------------------------------------------------------------------
 proton-c/src/core/event.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/99616e6c/proton-c/src/core/event.c
----------------------------------------------------------------------
diff --git a/proton-c/src/core/event.c b/proton-c/src/core/event.c
index 2a0a5cf..54fdee7 100644
--- a/proton-c/src/core/event.c
+++ b/proton-c/src/core/event.c
@@ -28,8 +28,8 @@ struct pn_collector_t {
   pn_list_t *pool;
   pn_event_t *head;
   pn_event_t *tail;
-  bool freed:1;
-  bool head_returned:1;         /* Head has been returned by pn_collector_next() */
+  bool freed;
+  bool head_returned;         /* Head has been returned by pn_collector_next() */
 };
 
 struct pn_event_t {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org