diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-11-27 22:33:01 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-11-27 22:33:01 +0000 |
commit | 3183a7ee7a9fddefe354a028236c7cd92e8661dd (patch) | |
tree | 5b12e7acf61e29d904011240396d3de84f68978c /src/input/input_pnm.c | |
parent | 095030785fbc4e2616000f6e6198cdc324682a4b (diff) | |
download | xine-lib-3183a7ee7a9fddefe354a028236c7cd92e8661dd.tar.gz xine-lib-3183a7ee7a9fddefe354a028236c7cd92e8661dd.tar.bz2 |
fix compiler warning about LOG_MODULE being redefined
CVS patchset: 5809
CVS date: 2003/11/27 22:33:01
Diffstat (limited to 'src/input/input_pnm.c')
-rw-r--r-- | src/input/input_pnm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_pnm.c b/src/input/input_pnm.c index 2f4c61557..efa9bee59 100644 --- a/src/input/input_pnm.c +++ b/src/input/input_pnm.c @@ -33,7 +33,6 @@ #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> -#include "bswap.h" #define LOG_MODULE "input_pnm" #define LOG_VERBOSE @@ -41,6 +40,7 @@ #define LOG */ +#include "bswap.h" #include "xine_internal.h" #include "xineutils.h" #include "input_plugin.h" |