Make FcInitDebug() idempotent
This commit is contained in:
parent
b97ab0c949
commit
7019896c99
18
src/fcdbg.c
18
src/fcdbg.c
|
@ -455,15 +455,17 @@ int FcDebugVal;
|
||||||
void
|
void
|
||||||
FcInitDebug (void)
|
FcInitDebug (void)
|
||||||
{
|
{
|
||||||
char *e;
|
if (!FcDebugVal) {
|
||||||
|
char *e;
|
||||||
|
|
||||||
e = getenv ("FC_DEBUG");
|
e = getenv ("FC_DEBUG");
|
||||||
if (e)
|
if (e)
|
||||||
{
|
{
|
||||||
printf ("FC_DEBUG=%s\n", e);
|
printf ("FC_DEBUG=%s\n", e);
|
||||||
FcDebugVal = atoi (e);
|
FcDebugVal = atoi (e);
|
||||||
if (FcDebugVal < 0)
|
if (FcDebugVal < 0)
|
||||||
FcDebugVal = 0;
|
FcDebugVal = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#define __fcdbg__
|
#define __fcdbg__
|
||||||
|
|
Loading…
Reference in New Issue