summaryrefslogtreecommitdiff
path: root/app-misc/bfr/files/bfr-1.6-bools.patch
blob: e1d7ed1e34bae64e70397492f9a3d758f04c9b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Uses bools for enabling/disabling debug.
Switch from self-defined to system version.
https://bugs.gentoo.org/944302
--- a/bfr.h
+++ b/bfr.h
@@ -9,6 +9,7 @@
 #include <unistd.h>
 #include <fcntl.h>
 #include <errno.h>
+#include <stdbool.h>
 #ifdef BUFPLAY
 #include <sys/mman.h>
 #endif
@@ -17,14 +18,13 @@
 # include "config.h"
 #endif
 
-typedef enum {false, true} logical;
 typedef enum { IN, RO, BF, WO, RW } state;
 
 #ifndef DEBUG
 # define debug(args...)
 #else
 # define debug(args...)  if(dodebug==true) { fprintf(stderr, ## args); }
-logical dodebug;
+bool dodebug;
 #endif
 #define verbose(args...)  if(verbose >= 1) { fprintf(stderr, ## args); }
 #define vverbose(args...)  if(verbose >= 2) { fprintf(stderr, ## args); }