write_redis: fix build warning
[collectd.git] / src / notify_desktop.c
index 4840441..255230b 100644 (file)
@@ -93,7 +93,7 @@ static int c_notify(const notification_t *n,
     timeout = fail_timeout;
   }
 
-  ssnprintf(summary, sizeof(summary), "collectd %s notification",
+  snprintf(summary, sizeof(summary), "collectd %s notification",
             (NOTIF_FAILURE == n->severity)
                 ? "FAILURE"
                 : (NOTIF_WARNING == n->severity)
@@ -166,5 +166,3 @@ void module_register(void) {
   plugin_register_init("notify_desktop", c_notify_init);
   return;
 } /* module_register */
-
-/* vim: set sw=4 ts=4 tw=78 noexpandtab : */