summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÁlvaro Peña <alvaropg@gmail.com>2013-10-23 23:47:46 +0200
committerÁlvaro Peña <alvaropg@gmail.com>2013-10-23 23:47:46 +0200
commit4c67d81d1f458592a90ad495c291da6fe0f16e46 (patch)
tree319230fb997ff0170bd2554a756d110be6d28040
parent5d96b4b3275381b441642e65c926dcf91451e169 (diff)
downloadlibgfbgraph-4c67d81d1f458592a90ad495c291da6fe0f16e46.tar.gz
(trivial) A better error message
-rw-r--r--tests/test-async.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-async.c b/tests/test-async.c
index bf43f20..600f05d 100644
--- a/tests/test-async.c
+++ b/tests/test-async.c
@@ -85,7 +85,7 @@ me_async_cb (GFBGraphAuthorizer *authorizer, GAsyncResult *res, gpointer user_da
me = gfbgraph_user_get_me_async_finish (authorizer, res, &error);
if (error != NULL) {
- g_print ("Error: %s\n", error->message);
+ g_print ("Error getting me: %s\n", error->message);
g_main_loop_quit (main_loop);
} else {
gchar *me_name;