Skip to content

Commit

Permalink
fix compilation of cups.plugin; fixes netdata#5324 (netdata#5325)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsaou authored Feb 4, 2019
1 parent b6aeb7e commit c70adbc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions collectors/cups.plugin/cups_plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ void netdata_cleanup_and_exit(int ret) {
exit(ret);
}

void send_statistics( const char *action, const char *action_result, const char *action_data) {
(void) action;
(void) action_result;
(void) action_data;
return;
}

// callbacks required by popen()
void signals_block(void) {};
void signals_unblock(void) {};
Expand Down

0 comments on commit c70adbc

Please sign in to comment.