Fix for this:
authorocto <octo>
Fri, 21 Apr 2006 07:20:53 +0000 (07:20 +0000)
committerocto <octo>
Fri, 21 Apr 2006 07:20:53 +0000 (07:20 +0000)
  collectd.c: In function `pidfile_create':
  collectd.c:259: warning: int format, pid_t arg (arg 3)

src/collectd.c

index 1b44e15..b4ee504 100644 (file)
@@ -256,7 +256,7 @@ static int pidfile_create (const char *file)
                return (1);
        }
 
-       fprintf (fh, "%d\n", getpid());
+       fprintf (fh, "%i\n", (int) getpid ());
        fclose(fh);
 
        return (0);