aboutsummaryrefslogtreecommitdiff
path: root/src/inputStream_http.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-05-21 01:36:49 +0000
committerEric Wong <normalperson@yhbt.net>2006-05-21 01:36:49 +0000
commitd11e19548c4b5e428038feb2abae9b4dad6900d0 (patch)
treebfb84b5b6e277492c50242208185b34afb7f497b /src/inputStream_http.c
parent7b35cfe2ac9cf6a52d0baccb8f1f52d468285476 (diff)
inputStream_http: avoid printf, use our handy macros in log.h
git-svn-id: https://svn.musicpd.org/mpd/trunk@4210 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputStream_http.c')
-rw-r--r--src/inputStream_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c
index c2392d70..57d7e847 100644
--- a/src/inputStream_http.c
+++ b/src/inputStream_http.c
@@ -342,7 +342,7 @@ static int parseUrl(InputStreamHTTPData * data, char * url) {
data->port = malloc(len+1);
strncpy(data->port, colon+1, len);
data->port[len] = '\0';
- printf("Port: %s\n", data->port);
+ DEBUG(__FILE__ ": Port: %s\n", data->port);
}
else {
data->port = strdup("80");