changed debug to print unsigned not signed

Original commit message from CVS:
changed debug to print unsigned not signed
This commit is contained in:
Zaheer Abbas Merali 2001-03-13 00:57:24 +00:00
parent 5561a9e79c
commit 518f0ac5d1

View file

@ -390,7 +390,7 @@ gst_thread_signal_thread (GstThread *thread, guint syncflag, gboolean set)
GST_FLAG_UNSET(thread,syncflag);
g_cond_signal (thread->cond);
g_mutex_unlock (thread->lock[syncflag-GST_THREAD_STATE_STARTED]);
GST_DEBUG (0,"sync: done signaling thread with %u set to %d..should be %d\n",syncflag,
GST_DEBUG (0,"sync: done signaling thread with %u set to %u..should be %d\n",syncflag,
GST_FLAG_IS_SET(thread,syncflag),set);
}