mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-20 07:38:54 +02:00
Emit meaningful error messages
That is useful, even if this is only an internal tool. I have been scratching my head why this tool would break distcheck...
This commit is contained in:
@@ -26,12 +26,19 @@ main (int argc, char **argv)
|
|||||||
{
|
{
|
||||||
char *content;
|
char *content;
|
||||||
int i;
|
int i;
|
||||||
|
GError *error = NULL;
|
||||||
|
|
||||||
if (argc != 3)
|
if (argc != 3)
|
||||||
|
{
|
||||||
|
g_printerr ("Usage: data-to-c <filename> <variable>");
|
||||||
return 1;
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (!g_file_get_contents (argv[1], &content, NULL, NULL))
|
if (!g_file_get_contents (argv[1], &content, NULL, &error))
|
||||||
|
{
|
||||||
|
g_printerr ("%s", error->message);
|
||||||
return 1;
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
g_print ("const char %s[] = \"", argv[2]);
|
g_print ("const char %s[] = \"", argv[2]);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user