$OpenBSD$
time_t format string fix
--- notify.c.orig	Tue Jul  1 19:35:46 2014
+++ notify.c	Tue Jul  1 19:36:19 2014
@@ -203,7 +203,7 @@ Notify_error notify_start(void)
     /* For not to catch signal as an error
      * EINTR added by Akira T. 12/11/01 */
     if (found < 0 && errno != EINTR) {
-      fprintf(stderr, "Timeout: %lu.%06lu\n", timeout.tv_sec, timeout.tv_usec);
+      fprintf(stderr, "Timeout: %llu.%06llu\n", (long long)timeout.tv_sec, (long long)timeout.tv_usec);
       return -1;
     }
 #endif
