Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Maggard <jmaggard@users.sourceforce.net>2012-01-22 04:36:18 +0400
committerJustin Maggard <jmaggard@users.sourceforce.net>2012-01-22 04:36:18 +0400
commitd9399fb9feeac57f5c151a09b8534d3a7f434aa6 (patch)
tree4334e17a47ad544762089c259b3e98094e8113c5
parent82ca4cbb409d54163f40b20aa5227fbe7cd4acff (diff)
* Fix the daemon() configure test.
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 9dd7d8d..48cffcb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -211,8 +211,7 @@ AC_COMPILE_IFELSE(
#include <unistd.h>
],
[
- int ret;
- ret = daemon(0, 0);
+ return daemon(0, 0);
]
)],
[