summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-08 00:37:41 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-08 00:37:41 +0000
commitfe86c8557a5f7d6a00c16c280347f6a520eccde0 (patch)
tree34283bc0abe24987904b7c13ad0a1e63cabd2cfd /stream
parent7023cdec7b06808c5b41577a78621fc867d06246 (diff)
downloadmpv-fe86c8557a5f7d6a00c16c280347f6a520eccde0.tar.bz2
mpv-fe86c8557a5f7d6a00c16c280347f6a520eccde0.tar.xz
Fix illegal identifiers, names starting with __ are reserved for the system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25648 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/url.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/url.c b/stream/url.c
index c487045904..79a1eba19a 100644
--- a/stream/url.c
+++ b/stream/url.c
@@ -367,7 +367,7 @@ url_escape_string(char *outbuf, const char *inbuf) {
if(unesc) free(unesc);
}
-#ifdef __URL_DEBUG
+#ifdef URL_DEBUG
void
url_debug(const URL_t *url) {
if( url==NULL ) {
@@ -394,4 +394,4 @@ url_debug(const URL_t *url) {
printf("password=%s\n", url->password );
}
}
-#endif //__URL_DEBUG
+#endif /* URL_DEBUG */