Emit meaningful error messages
authorMatthias Clasen <mclasen@redhat.com>
Mon, 30 Jan 2012 22:53:48 +0000 (17:53 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 30 Jan 2012 22:53:48 +0000 (17:53 -0500)
That is useful, even if this is only an internal tool.
I have been scratching my head why this tool would
break distcheck...

gio/data-to-c.c

index b20369f..9dcf286 100644 (file)
@@ -26,12 +26,19 @@ main (int argc, char **argv)
 {
   char *content;
   int i;
+  GError *error = NULL;
 
   if (argc != 3)
-    return 1;
+    {
+      g_printerr ("Usage: data-to-c <filename> <variable>");
+      return 1;
+    }
 
-  if (!g_file_get_contents (argv[1], &content, NULL, NULL))
-    return 1;
+  if (!g_file_get_contents (argv[1], &content, NULL, &error))
+    {
+      g_printerr ("%s", error->message);
+      return 1;
+    }
 
   g_print ("const char %s[] = \"", argv[2]);