diff options
author | Max Kellermann <max@duempel.org> | 2009-07-14 14:23:44 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-14 14:23:44 +0200 |
commit | 58dd6eee5d95e0d836b953c9e587651c2cb53008 (patch) | |
tree | b7852406b6bb9e72b19ea327a3f6539a4245df03 | |
parent | ce517ad5d81f53a67293a5ea504f194a2c558d7e (diff) | |
download | mpd-58dd6eee5d95e0d836b953c9e587651c2cb53008.tar.gz mpd-58dd6eee5d95e0d836b953c9e587651c2cb53008.tar.xz mpd-58dd6eee5d95e0d836b953c9e587651c2cb53008.zip |
output/httpd: removed duplicate sys/types.h include
The first patch by Patrick didn't work, because his "#ifdef HAVE_OSX"
line would have required config.h.
-rw-r--r-- | src/output/httpd_output_plugin.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/output/httpd_output_plugin.c b/src/output/httpd_output_plugin.c index edfc1063d..9fdf46456 100644 --- a/src/output/httpd_output_plugin.c +++ b/src/output/httpd_output_plugin.c @@ -34,10 +34,6 @@ #include <unistd.h> #include <errno.h> -#ifdef HAVE_OSX -#include <sys/types.h> -#endif - #undef G_LOG_DOMAIN #define G_LOG_DOMAIN "httpd_output" |