diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 22:28:25 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 22:28:25 +0000 |
commit | 3e10669d9230636fe5ef56f05c5b8748414ed383 (patch) | |
tree | b450705164f4cb0e423c8a719c5b23f1b6b95732 /src | |
parent | 5c20c1161c36cc97478c5527576961013e5dc8e4 (diff) | |
download | xine-lib-3e10669d9230636fe5ef56f05c5b8748414ed383.tar.gz xine-lib-3e10669d9230636fe5ef56f05c5b8748414ed383.tar.bz2 |
real_codecs_path has always to be declared.
CVS patchset: 8686
CVS date: 2007/03/16 22:28:25
Diffstat (limited to 'src')
-rw-r--r-- | src/libreal/real_common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libreal/real_common.c b/src/libreal/real_common.c index 08d7aec7e..ea2336f95 100644 --- a/src/libreal/real_common.c +++ b/src/libreal/real_common.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: real_common.c,v 1.6 2007/03/16 22:26:54 dgp85 Exp $ + * $Id: real_common.c,v 1.7 2007/03/16 22:28:25 dgp85 Exp $ * * Common function for the thin layer to use Real binary-only codecs in xine */ @@ -68,11 +68,11 @@ void __ctype_b(void) { exit(0); } #endif void _x_real_codecs_init(xine_t *const xine) { -#ifdef REAL_CODEC_PATH + const char *real_codecs_path = NULL; +src/libreal/#ifdef REAL_CODEC_PATH const char *const default_real_codecs_path = REAL_CODEC_PATH; #else const char *default_real_codecs_path = ""; - const char *real_codecs_path = NULL; struct stat s; #define try_real_path(path) \ |