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
|
||||
FcInitDebug (void)
|
||||
{
|
||||
char *e;
|
||||
if (!FcDebugVal) {
|
||||
char *e;
|
||||
|
||||
e = getenv ("FC_DEBUG");
|
||||
if (e)
|
||||
{
|
||||
printf ("FC_DEBUG=%s\n", e);
|
||||
FcDebugVal = atoi (e);
|
||||
if (FcDebugVal < 0)
|
||||
FcDebugVal = 0;
|
||||
e = getenv ("FC_DEBUG");
|
||||
if (e)
|
||||
{
|
||||
printf ("FC_DEBUG=%s\n", e);
|
||||
FcDebugVal = atoi (e);
|
||||
if (FcDebugVal < 0)
|
||||
FcDebugVal = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
#define __fcdbg__
|
||||
|
|
Loading…
Reference in New Issue