[Fontconfig] fontconfig: Branch 'master'
Akira TAGOH
tagoh at kemper.freedesktop.org
Thu Nov 16 02:37:45 UTC 2017
src/fcxml.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit e73b5dcbf2248b538e06bc92a71700dacbec983b
Author: Akira TAGOH <akira at tagoh.org>
Date: Thu Nov 16 11:37:36 2017 +0900
Correct debugging messages to load/scan config
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;
More information about the Fontconfig
mailing list