From cb10c90e194355adf9f48498bf288ff637f79aec Mon Sep 17 00:00:00 2001 From: reimar Date: Tue, 21 Nov 2006 16:27:05 +0000 Subject: [PATCH] cosmetics git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21142 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream/url.c b/stream/url.c index 7a7b407c15..c487045904 100644 --- a/stream/url.c +++ b/stream/url.c @@ -31,7 +31,7 @@ URL_t *url_redirect(URL_t **url, const char *redir) { tmp = strstr(newurl, "://"); if (tmp) tmp = strchr(tmp + 3, '/'); } else - tmp = strrchr(newurl, '/'); + tmp = strrchr(newurl, '/'); if (tmp) tmp[1] = 0; strcat(newurl, redir); res = url_new(newurl);