freebsd-ports/x11-wm/compton/files/patch-src_c2.h
Alexey Dokuchaev a7fb7f0604 - Update `x11-wm/compton' to the latest snapshot
- Add missing X.org libraries to USE_XORG list
- Install stripped binary (subject to WITH_DEBUG)
- Rename wrongly named patch and regenerate them
- Convert to option helpers while I'm at here
2017-02-05 18:58:00 +00:00

15 lines
300 B
C

--- src/c2.h.orig 2016-09-07 08:23:44 UTC
+++ src/c2.h
@@ -35,10 +35,8 @@ typedef struct _c2_l c2_l_t;
/// Pointer to a condition tree.
typedef struct {
bool isbranch : 1;
- union {
- c2_b_t *b;
- c2_l_t *l;
- };
+ c2_b_t *b;
+ c2_l_t *l;
} c2_ptr_t;
/// Initializer for c2_ptr_t.