Prepare for '-Wunused-parameter'
[lttng-tools.git] / src / bin / lttng-sessiond / main.cpp
index d8d2caf8b2c9c387d4762b03d0968790584e0199..5873f03047e0c61c674bfc091a0482478d63391f 100644 (file)
@@ -795,7 +795,8 @@ end:
  * See config_entry_handler_cb comment in common/config/session-config.h for the
  * return value conventions.
  */
-static int config_entry_handler(const struct config_entry *entry, void *unused)
+static int config_entry_handler(const struct config_entry *entry,
+               void *unused __attribute__((unused)))
 {
        int ret = 0, i;
 
@@ -1172,7 +1173,8 @@ error:
  * Simply stop all worker threads, leaving main() return gracefully after
  * joining all threads and calling cleanup().
  */
-static void sighandler(int sig, siginfo_t *siginfo, void *arg)
+static void sighandler(int sig, siginfo_t *siginfo,
+               void *arg __attribute__((unused)))
 {
        switch (sig) {
        case SIGINT:
This page took 0.022529 seconds and 4 git commands to generate.