diff options
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2399,8 +2399,7 @@ xs_dict *dequeue(const char *fn) { xs_dict *obj = queue_get(fn); - if (obj != NULL) - unlink(fn); + unlink(fn); return obj; } |