diff options
author | Akira TAGOH <akira@tagoh.org> | 2017-09-21 14:04:10 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2017-09-21 14:04:10 +0900 |
commit | 052115aa83c9927768ab970443250fb4ed9c0fca (patch) | |
tree | bc29e44f974f10a3fb3be6609f2fdd5bba34d029 | |
parent | 5603e06aeba57cb2c7044c9cc6001d0cef5039f4 (diff) |
Fix again to keep the same behavior to the return value of FcConfigParseAndLoad
https://bugs.freedesktop.org/show_bug.cgi?id=102141
-rw-r--r-- | src/fcxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fcxml.c b/src/fcxml.c index 4b084866..ce17b648 100644 --- a/src/fcxml.c +++ b/src/fcxml.c @@ -3374,7 +3374,7 @@ bail0: FcConfigMessage (0, FcSevereError, "Cannot load default config file"); return FcFalse; } - return ret; + return FcTrue; } #define __fcxml__ #include "fcaliastail.h" |