diff options
author | Lennart Poettering <lennart@poettering.net> | 2006-02-23 02:27:19 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2006-02-23 02:27:19 +0000 |
commit | 4a64b0d1167e980d81b798d813f35209895f0674 (patch) | |
tree | 52688c3035eadaea2970cb3d07c64b0676c154b8 /src/polyp/stream.c | |
parent | cb59817b4a2e1f640bd9279d0c7863e7a09c1fa6 (diff) |
change pa_log() and friends to not require a trailing \n on all logged strings
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@574 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polyp/stream.c')
-rw-r--r-- | src/polyp/stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/polyp/stream.c b/src/polyp/stream.c index 5ab91815..8bdb9059 100644 --- a/src/polyp/stream.c +++ b/src/polyp/stream.c @@ -289,7 +289,7 @@ static void ipol_callback(pa_mainloop_api *m, pa_time_event *e, PA_GCC_UNUSED co pa_stream_ref(s); -/* pa_log("requesting new ipol data\n"); */ +/* pa_log("requesting new ipol data"); */ if (s->state == PA_STREAM_READY && !s->ipol_requested) { pa_operation_unref(pa_stream_get_latency_info(s, NULL, NULL)); @@ -655,7 +655,7 @@ static void stream_get_latency_info_callback(pa_pdispatch *pd, uint32_t command, } if (o->stream->interpolate) { -/* pa_log("new interpol data\n"); */ +/* pa_log("new interpol data"); */ o->stream->ipol_timestamp = i.timestamp; o->stream->ipol_usec = pa_stream_get_time(o->stream, &i); o->stream->ipol_requested = 0; |