diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-05-02 12:33:44 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-05-02 12:33:44 +0000 |
commit | 1a4813bac2a73f08a9d5a559e80faab3731126b6 (patch) | |
tree | 791e4b2f2221f2dda7080deb439b5a1dc7028d2c /src | |
parent | a06fea65f528a8c8ebf177c03789aedfa23ade25 (diff) | |
download | xine-lib-1a4813bac2a73f08a9d5a559e80faab3731126b6.tar.gz xine-lib-1a4813bac2a73f08a9d5a559e80faab3731126b6.tar.bz2 |
fix compilation with LOG defined: mrl undeclared
(patch sent by Lethal Weapon <lethalwp@tiscali.be>)
CVS patchset: 4748
CVS date: 2003/05/02 12:33:44
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_rtsp.c | 2 | ||||
-rw-r--r-- | src/input/input_v4l.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_rtsp.c b/src/input/input_rtsp.c index 58f85f81a..138c1ef6a 100644 --- a/src/input/input_rtsp.c +++ b/src/input/input_rtsp.c @@ -222,7 +222,7 @@ static int rtsp_plugin_open (input_plugin_t *this_gen) { rtsp_session_t *rtsp; #ifdef LOG - printf ("input_rtsp: trying to open '%s'\n", mrl); + printf ("input_rtsp: trying to open '%s'\n", this->mrl); #endif rtsp = rtsp_session_start(this->stream,this->mrl); diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c index 40354bc3d..3f07815e8 100644 --- a/src/input/input_v4l.c +++ b/src/input/input_v4l.c @@ -294,7 +294,7 @@ static int v4l_plugin_open (input_plugin_t *this_gen) { int i, j, ret, found; #ifdef LOG - printf ("input_v4l: trying to open '%s'\n", mrl); + printf ("input_v4l: trying to open '%s'\n", this->mrl); #endif found = 0; |