From 781f489e87d71e26f6aeba988a4e5b1aaa089449 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 27 Jun 2002 22:24:36 +0000 Subject: [PATCH] no newlines Original commit message from CVS: no newlines --- gst/cothreads.c | 4 ++-- gst/gstthread.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/cothreads.c b/gst/cothreads.c index a702ea48f8..0f08bb8439 100644 --- a/gst/cothreads.c +++ b/gst/cothreads.c @@ -500,10 +500,10 @@ cothread_stackquery (void **stack, glong* stacksize) *stacksize = 0; return FALSE; } - GST_DEBUG (GST_CAT_THREAD, "have posix_memalign at %p of size %d\n", + GST_DEBUG (GST_CAT_THREAD, "have posix_memalign at %p of size %d", (void *) *stack, STACK_SIZE); GST_DEBUG (GST_CAT_COTHREADS, - "Got new cothread stack from %p to %p (size %ld)\n", + "Got new cothread stack from %p to %p (size %ld)", *stack, *stack + STACK_SIZE - 1, (long) STACK_SIZE); *stacksize = STACK_SIZE; return TRUE; diff --git a/gst/gstthread.c b/gst/gstthread.c index 820b274b75..a3f18cb92a 100644 --- a/gst/gstthread.c +++ b/gst/gstthread.c @@ -166,7 +166,7 @@ gst_thread_dispose (GObject *object) GST_DEBUG (GST_CAT_THREAD, "Disposing of thread"); pthread_attr_getstack (&thread->attr, &stack, (size_t *) &stacksize); - GST_DEBUG (GST_CAT_THREAD, "undng posix_memalign at %p of size %ld\n", + GST_DEBUG (GST_CAT_THREAD, "undoing posix_memalign at %p of size %ld", stack, stacksize); free (stack);