diff options
author | Omar Polo <op@omarpolo.com> | 2021-06-16 14:38:47 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-06-16 14:38:47 +0000 |
commit | 984c46a82e002089b3a4035ba34873ad9c75d973 (patch) | |
tree | be9c7e8cec5cbe5fb60ee6bb21a43251f4621500 /log.c | |
parent | 89c110fe7befaee2b446873a351e0833c3c884b6 (diff) |
kill unused variable
leftover from the handle_imsg_log -> do_log transition.
Diffstat (limited to 'log.c')
-rw-r--r-- | log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -287,7 +287,7 @@ handle_imsg_quit(struct imsgbuf *ibuf, struct imsg *imsg, size_t datalen) static void handle_imsg_log(struct imsgbuf *ibuf, struct imsg *imsg, size_t datalen) { - int priority, quit; + int priority; char *msg; msg = imsg->data; |