solaris-fixes branch: Applied the swap-patch by Christophe Kalt.
[collectd.git] / src / collectd.c
index 28a8a1e..b4ee504 100644 (file)
@@ -135,7 +135,7 @@ static void exit_usage (char *name)
 #endif
                        "  Step              "COLLECTD_STEP" seconds\n"
                        "  Heartbeat         "COLLECTD_HEARTBEAT" seconds\n"
-                       "\n"PACKAGE" "VERSION", http://verplant.org/collectd/\n"
+                       "\n"PACKAGE" "VERSION", http://collectd.org/\n"
                        "by Florian octo Forster <octo@verplant.org>\n"
                        "for contributions see `AUTHORS'\n");
        exit (0);
@@ -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);