tests: benchmarks: align error message with code

This commit is contained in:
Mark Nauwelaerts 2012-09-12 11:49:55 +02:00
parent 221d46f438
commit ec4ff874fc
3 changed files with 3 additions and 3 deletions

View file

@ -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);
}
}

View file

@ -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);
}
}

View file

@ -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);
}
}