Skip to content

Commit

Permalink
libzmqutil/reactor: drop unnecessary include
Browse files Browse the repository at this point in the history
Problem: the zmqutil_watcher implementation includes czmq.h
despite not using any of it.

Replace with zmq.h.
  • Loading branch information
garlick committed Sep 19, 2023
1 parent 90e6550 commit 09df640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/libzmqutil/reactor.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <stdbool.h>
#include <string.h>
#include <assert.h>
#include <czmq.h>
#include <zmq.h>

#include "src/common/libev/ev.h"
#include "src/common/libflux/reactor_private.h"
Expand Down

0 comments on commit 09df640

Please sign in to comment.