main: Print the full path of the configuration file

Rather than just its filename, otherwise we won't know where to look.
This commit is contained in:
Bastien Nocera
2019-08-08 12:21:55 +02:00
parent 3274a31153
commit 011310e30c

View File

@ -89,7 +89,7 @@ load_conf (void)
file = g_key_file_new (); file = g_key_file_new ();
g_debug("About to load configuration file '%s'", filename); g_debug("About to load configuration file '%s'", filename);
if (!g_key_file_load_from_file (file, filename, G_KEY_FILE_NONE, &error)) { if (!g_key_file_load_from_file (file, filename, G_KEY_FILE_NONE, &error)) {
g_warning ("Could not open fprintd.conf: %s\n", error->message); g_warning ("Could not open \"%s\": %s\n", filename, error->message);
goto bail; goto bail;
} }