+2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * testsuite/debug/commandline.c: (debug_not_reached):
+ * testsuite/debug/output.c: (check_message):
+ fix testsuite
+
2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
* examples/cutter/.cvsignore:
update - this is huge, because it includes *.bb, *.bbg and *.da files
which are generated for gcov.
-2004-01-11 David Schleef,,, <set EMAIL_ADDRESS environment variable>
+2004-01-11 David Schleef <ds@schleef.org>
* gst/gststructure.c: (gst_strtoi), (gst_value_from_string): Add
a function to parse integers in ways that strto[u]l() does not.
static void
debug_not_reached (GstDebugCategory *category, GstDebugLevel level, const gchar *file,
- const gchar *function, gint line, GObject *object, gchar *message,
+ const gchar *function, gint line, GObject *object, GstDebugMessage *message,
gpointer thread)
{
g_assert_not_reached ();
static void
check_message (GstDebugCategory *category, GstDebugLevel level, const gchar *file,
- const gchar *function, gint line, GObject *object, gchar *message,
+ const gchar *function, gint line, GObject *object, GstDebugMessage *message,
gpointer unused)
{
gint temp;
/* <0 means no checks */
if (count < 0) return;
- g_print ("expecting \"%s\"...", message);
+ g_print ("expecting \"%s\"...", (gchar *) message);
/* level */
temp = (count % 5) + 1;
g_assert (level == temp);
static void
debug_not_reached (GstDebugCategory *category, GstDebugLevel level, const gchar *file,
- const gchar *function, gint line, GObject *object, gchar *message,
+ const gchar *function, gint line, GObject *object, GstDebugMessage *message,
gpointer thread)
{
g_assert_not_reached ();
static void
check_message (GstDebugCategory *category, GstDebugLevel level, const gchar *file,
- const gchar *function, gint line, GObject *object, gchar *message,
+ const gchar *function, gint line, GObject *object, GstDebugMessage *message,
gpointer unused)
{
gint temp;
/* <0 means no checks */
if (count < 0) return;
- g_print ("expecting \"%s\"...", message);
+ g_print ("expecting \"%s\"...", (gchar *) message);
/* level */
temp = (count % 5) + 1;
g_assert (level == temp);