freebsd-ports/x11-wm/compton/files/patch-c2.h
Alexey Dokuchaev 066591fe13 Add compton, a compositor for X11, which was forked from Dana Jansens' fork
of xcompmgr, and then heavily refactored.

WWW: https://github.com/chjj/compton

PR:		ports/176480 (substantially modified)
Submitted by:	Chi-Hung Chang
2013-06-25 16:22:46 +00:00

15 lines
319 B
C

--- src/c2.h.orig 2013-02-06 01:40:34.000000000 +0800
+++ src/c2.h 2013-02-06 01:40:53.000000000 +0800
@@ -35,10 +35,8 @@
/// 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.