diff options
author | Max Kellermann <max@duempel.org> | 2012-09-25 11:39:01 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-09-25 11:39:01 +0200 |
commit | e2a574e2a00803f45ed6f60154f01dd2ccc8444a (patch) | |
tree | 7bb07fc285c00d01bd0d7fb1314c49ad39cb9232 /src/decoder_control.c | |
parent | 1536b5a9d602688354648106ca8d0e34cac3c933 (diff) | |
parent | ba6ef53ef95dfd48ce0e5dd161b3199b431044ed (diff) | |
download | mpd-e2a574e2a00803f45ed6f60154f01dd2ccc8444a.tar.gz mpd-e2a574e2a00803f45ed6f60154f01dd2ccc8444a.tar.xz mpd-e2a574e2a00803f45ed6f60154f01dd2ccc8444a.zip |
Merge branch 'v0.17.x'
Conflicts:
src/locate.c
Diffstat (limited to '')
-rw-r--r-- | src/decoder_control.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/decoder_control.c b/src/decoder_control.c index afcb16cdf..33d4e4d44 100644 --- a/src/decoder_control.c +++ b/src/decoder_control.c @@ -202,7 +202,6 @@ dc_mixramp_start(struct decoder_control *dc, char *mixramp_start) g_free(dc->mixramp_start); dc->mixramp_start = mixramp_start; - g_debug("mixramp_start = %s", mixramp_start ? mixramp_start : "NULL"); } void @@ -212,7 +211,6 @@ dc_mixramp_end(struct decoder_control *dc, char *mixramp_end) g_free(dc->mixramp_end); dc->mixramp_end = mixramp_end; - g_debug("mixramp_end = %s", mixramp_end ? mixramp_end : "NULL"); } void @@ -222,5 +220,4 @@ dc_mixramp_prev_end(struct decoder_control *dc, char *mixramp_prev_end) g_free(dc->mixramp_prev_end); dc->mixramp_prev_end = mixramp_prev_end; - g_debug("mixramp_prev_end = %s", mixramp_prev_end ? mixramp_prev_end : "NULL"); } |