GNOME Bugzilla – Bug 698091
fix printf format
Last modified: 2013-05-11 17:22:11 UTC
Created attachment 241598 [details] [review] fix printf format patch attached
Looks fine, but I don't understand why the code here does s = g_strdup_printf (...) GST_DEBUG_OBJECT (obj, "%s", s); g_free (s); instead of just GST_DEBUG_OBJECT (obj, "....", ...); David?
Created attachment 241601 [details] [review] alternate patch
I already fixed this locally. It was previously doing the g_strdup_printf() because it was automatically converted from an older logging system. commit 1c0073c4d64dfb336e8215e61ee3a48ebedbdac5 Author: David Schleef <ds@schleef.org> Date: Sun Apr 14 21:56:11 2013 -0700 Fix bad debugging printf formats