fixed small compilation errors (debug mode)
[NeonServV5.git] / src / main.c
index fb16300da97ac5697e13adfcc59b85811a8468d3..72d3fb7e1952ec51a572fa3dd85b451811a41e22 100644 (file)
@@ -131,10 +131,9 @@ static void main_daemonize() {
         fprintf(pidfile, "%i\n", (int)getpid());
         fclose(pidfile);
     }
-    FILE *retn;
-    fclose(stdin); retn = fopen("/dev/null", "r");
-    fclose(stdout); retn = fopen("/dev/null", "w");
-    fclose(stderr); retn = fopen("/dev/null", "w");
+    fclose(stdin); fopen("/dev/null", "r");
+    fclose(stdout); fopen("/dev/null", "w");
+    fclose(stderr); fopen("/dev/null", "w");
     #endif
 }