diff options
author | Nikias Bassen | 2023-02-07 12:47:10 +0100 |
---|---|---|
committer | Nikias Bassen | 2023-02-07 12:47:10 +0100 |
commit | bfc97788f081584ced9cd35d85b69b3fec6b907c (patch) | |
tree | f63f82c52c9f795ce3f1290a37548604e73bf9b5 /src/bplist.c | |
parent | 4dbf9de9690841bd084a7bb641197d3a3d5ce217 (diff) | |
download | libplist-bfc97788f081584ced9cd35d85b69b3fec6b907c.tar.gz libplist-bfc97788f081584ced9cd35d85b69b3fec6b907c.tar.bz2 |
Fix build without --enable-debug
Diffstat (limited to 'src/bplist.c')
-rw-r--r-- | src/bplist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bplist.c b/src/bplist.c index 72040cc..d29d499 100644 --- a/src/bplist.c +++ b/src/bplist.c @@ -229,7 +229,9 @@ void plist_bin_deinit(void) void plist_bin_set_debug(int debug) { +#if DEBUG plist_bin_debug = debug; +#endif } static plist_t parse_bin_node_at_index(struct bplist_data *bplist, uint32_t node_index); |