diff options
author | Thomas Markwalder <tmark@isc.org> | 2019-11-06 15:53:50 -0500 |
---|---|---|
committer | Thomas Markwalder <tmark@isc.org> | 2019-11-07 07:56:35 -0500 |
commit | dbd36dfa82956b53683462afadfabb1b33fa3dd1 (patch) | |
tree | ce91554e17456c1f1a075a4459d71079596f5afc | |
parent | 95944cab6035d20be270eec01254c7bb867ec705 (diff) | |
download | isc-dhcp-dbd36dfa82956b53683462afadfabb1b33fa3dd1.tar.gz |
[#53,!18] Addressed review comment.53-dhclient-v4-4-1-require-ctx-running-assertion-triggered-on-sigterm-sigint
omapip/isclib.c
Added use of IGNORE_UNUSED()
-rw-r--r-- | omapip/isclib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omapip/isclib.c b/omapip/isclib.c index 81eece09..4aca9130 100644 --- a/omapip/isclib.c +++ b/omapip/isclib.c @@ -151,7 +151,7 @@ handle_signal(int sig, void (*handler)(int)) { */ static void set_ctx_running(isc_task_t *task, isc_event_t *event) { - task = task; // unused; + IGNORE_UNUSED(task); dhcp_gbl_ctx.actx_running = ISC_TRUE; if (shutdown_signal) { |