diff options
| author | bakkeby <[email protected]> | 2021-05-05 18:47:45 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2021-05-05 18:47:45 +0200 |
| commit | df9533f1eb6cbfe289d6bcdb4874ac4e2dea8cd8 (patch) | |
| tree | 4c71837461cc38bbfdac66a7389f0707ee5a3896 /patch/ipc | |
| parent | 579f8f892b45b89355f48563c854bffd6b29a1d8 (diff) | |
| download | dwm-flexipatch-df9533f1eb6cbfe289d6bcdb4874ac4e2dea8cd8.tar.gz dwm-flexipatch-df9533f1eb6cbfe289d6bcdb4874ac4e2dea8cd8.zip | |
ipc: get_tags - do not dump tag if the tag is null
Diffstat (limited to 'patch/ipc')
| -rw-r--r-- | patch/ipc/yajl_dumps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patch/ipc/yajl_dumps.c b/patch/ipc/yajl_dumps.c index 2c334ef..0888252 100644 --- a/patch/ipc/yajl_dumps.c +++ b/patch/ipc/yajl_dumps.c @@ -6,7 +6,7 @@ int dump_tag(yajl_gen gen, const char *name, const int tag_mask) { if (!name) - return; + return 0; // clang-format off YMAP( |
