src: add headers needed when building with dpkg
[espeaktime] / src / config.c
index 8eadd3f..19f89e0 100644 (file)
@@ -74,7 +74,7 @@ void cfg_speak(struct espeaktime_settings *cfg, gboolean test_mode)
 
        pid = fork();
        if (pid < 0) {
-               perror("fork");
+               g_print("fork: %s", g_strerror(errno));
                return;
        }
        if (pid)