summaryrefslogtreecommitdiff
path: root/src/fcxml.c
diff options
context:
space:
mode:
authorAkira TAGOH <akira@tagoh.org>2017-11-16 11:37:36 +0900
committerAkira TAGOH <akira@tagoh.org>2017-11-16 11:37:36 +0900
commite73b5dcbf2248b538e06bc92a71700dacbec983b (patch)
tree2b8fe546d42ad9907db486ba039e35fdef9106e2 /src/fcxml.c
parent676d8699cc2e812f02e661842be4221c7549c511 (diff)
downloadfontconfig-e73b5dcbf2248b538e06bc92a71700dacbec983b.tar.gz
Correct debugging messages to load/scan config
Diffstat (limited to 'src/fcxml.c')
-rw-r--r--src/fcxml.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fcxml.c b/src/fcxml.c
index 9b1552a..6128446 100644
--- a/src/fcxml.c
+++ b/src/fcxml.c
@@ -3254,7 +3254,7 @@ FcConfigParseAndLoadFromMemoryInternal (FcConfig *config,
return FcFalse;
len = strlen ((const char *) buffer);
if (FcDebug () & FC_DBG_CONFIG)
- printf ("\tLoading config file from %s\n", filename);
+ printf ("\t%s config file from %s\n", load ? "Loading" : "Scanning", filename);
#ifdef ENABLE_LIBXML2
memset(&sax, 0, sizeof(sax));
@@ -3348,7 +3348,7 @@ bail2:
bail1:
if (error && complain)
{
- FcConfigMessage (0, FcSevereError, "Cannot load config file from %s", filename);
+ FcConfigMessage (0, FcSevereError, "Cannot %s config file from %s", load ? "load" : "scan", filename);
return FcFalse;
}
return FcTrue;
@@ -3442,9 +3442,9 @@ bail0:
if (!ret && complain)
{
if (name)
- FcConfigMessage (0, FcSevereError, "Cannot load config file \"%s\"", name);
+ FcConfigMessage (0, FcSevereError, "Cannot %s config file \"%s\"", load ? "load" : "scan", name);
else
- FcConfigMessage (0, FcSevereError, "Cannot load default config file");
+ FcConfigMessage (0, FcSevereError, "Cannot %s default config file", load ? "load" : "scan");
return FcFalse;
}
return FcTrue;