From: Andre Noll Date: Sun, 19 Jul 2009 13:44:35 +0000 (+0200) Subject: Don't include osl.h from the audio format handlers. X-Git-Tag: v0.4.0~50^2~3 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=732734671a6d8cc8960c3c5a67d25f85ba6d7cb4 Don't include osl.h from the audio format handlers. They don't need this header, and including it broke compilation with -O0. --- diff --git a/aac_afh.c b/aac_afh.c index 7de73706..d12dfa19 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -11,7 +11,6 @@ /** \file aac_afh.c para_server's aac audio format handler */ #include -#include #include "para.h" #include "error.h" diff --git a/mp3_afh.c b/mp3_afh.c index 5eacf63b..d0be0ad9 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -17,7 +17,6 @@ */ #include -#include #include "para.h" #include "error.h" diff --git a/ogg_afh.c b/ogg_afh.c index 65573cfc..4e64f062 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -10,7 +10,6 @@ #include #include #include -#include #include "para.h" #include "error.h"