diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-07-12 15:19:26 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-07-12 15:19:26 +0000 |
commit | 227490e2be8029318beb488c404f9efdaedb852f (patch) | |
tree | 7d0f8a5442c406dc4764b576e5650d3f04c8f16d /src | |
parent | 1af2272920c64fe8ed463eea9475dc18058bf4ad (diff) | |
download | mpd-227490e2be8029318beb488c404f9efdaedb852f.tar.gz mpd-227490e2be8029318beb488c404f9efdaedb852f.tar.xz mpd-227490e2be8029318beb488c404f9efdaedb852f.zip |
icky, s/printf/DEBUG/
git-svn-id: https://svn.musicpd.org/mpd/trunk@1849 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r-- | src/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c index 61c9f7040..4ca9fa658 100644 --- a/src/path.c +++ b/src/path.c @@ -261,7 +261,7 @@ char * sanitizePathDup(char * path) { ret[len] = '\0'; } - printf("sanitized: %s\n", ret); + DEBUG("sanitized: %s\n", ret); return realloc(ret,len+1); } |