diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-06-06 23:48:52 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-06-06 23:48:52 +0100 |
commit | e026dc188cfa93f778e7f1db9ef58d115d91417e (patch) | |
tree | 31245aa87b06cd5b63c55729a3efd6f974c11b15 | |
parent | 8b41e0929610c6ce97de12043bc713a866696f11 (diff) | |
download | xine-lib-e026dc188cfa93f778e7f1db9ef58d115d91417e.tar.gz xine-lib-e026dc188cfa93f778e7f1db9ef58d115d91417e.tar.bz2 |
Fix RealPlayer codec detection and a nearby logging build failure. Both typos.
-rw-r--r-- | src/libreal/real_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libreal/real_common.c b/src/libreal/real_common.c index 22c33aa03..e2a4ee3d6 100644 --- a/src/libreal/real_common.c +++ b/src/libreal/real_common.c @@ -79,7 +79,7 @@ void _x_real_codecs_init(xine_t *const xine) { struct stat s; #define try_real_path(path) \ - if (!stat (path "/dvrc.so", &s)) \ + if (!stat (path "/drvc.so", &s)) \ default_real_codecs_path = path; #define try_real_subpath(path) \ try_real_path("/usr/" path) \ @@ -114,7 +114,7 @@ void _x_real_codecs_init(xine_t *const xine) { "how to install the codecs."), 10, NULL, NULL); - lprintf ("real codecs path : %s\n", real_codec_path); + lprintf ("real codecs path : %s\n", real_codecs_path); } void *_x_real_codec_open(xine_stream_t *const stream, const char *const path, |