mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +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);
|
||||
|
||||
if (error) {
|
||||
printf ("ERROR: g_thread_create() %s\n", error->message);
|
||||
printf ("ERROR: g_thread_try_new() %s\n", error->message);
|
||||
exit (-1);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -74,7 +74,7 @@ main (gint argc, gchar * argv[])
|
|||
sysclock, &error);
|
||||
|
||||
if (error) {
|
||||
printf ("ERROR: g_thread_create() %s\n", error->message);
|
||||
printf ("ERROR: g_thread_try_new() %s\n", error->message);
|
||||
exit (-1);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -164,7 +164,7 @@ main (gint argc, gchar * argv[])
|
|||
GINT_TO_POINTER (t), &error);
|
||||
|
||||
if (error) {
|
||||
printf ("ERROR: g_thread_create() %s\n", error->message);
|
||||
printf ("ERROR: g_thread_try_new() %s\n", error->message);
|
||||
exit (-1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue