mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
tests: benchmarks: align error message with code
This commit is contained in:
parent
221d46f438
commit
ec4ff874fc
3 changed files with 3 additions and 3 deletions
|
@ -100,7 +100,7 @@ main (gint argc, gchar * argv[])
|
||||||
GINT_TO_POINTER (t), &error);
|
GINT_TO_POINTER (t), &error);
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
printf ("ERROR: g_thread_create() %s\n", error->message);
|
printf ("ERROR: g_thread_try_new() %s\n", error->message);
|
||||||
exit (-1);
|
exit (-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,7 +74,7 @@ main (gint argc, gchar * argv[])
|
||||||
sysclock, &error);
|
sysclock, &error);
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
printf ("ERROR: g_thread_create() %s\n", error->message);
|
printf ("ERROR: g_thread_try_new() %s\n", error->message);
|
||||||
exit (-1);
|
exit (-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -164,7 +164,7 @@ main (gint argc, gchar * argv[])
|
||||||
GINT_TO_POINTER (t), &error);
|
GINT_TO_POINTER (t), &error);
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
printf ("ERROR: g_thread_create() %s\n", error->message);
|
printf ("ERROR: g_thread_try_new() %s\n", error->message);
|
||||||
exit (-1);
|
exit (-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue