Skip to content
Snippets Groups Projects
Commit 7657345c authored by Keith Packard's avatar Keith Packard
Browse files

In debugging output, mark weakly bound values with (w)

parent 02c3d2e9
No related branches found
Tags gst-rtsp-server-1.3.2
Loading
/*
* $XFree86: xc/lib/fontconfig/src/fcdbg.c,v 1.8 2002/08/19 19:32:05 keithp Exp $
* $XFree86: xc/lib/fontconfig/src/fcdbg.c,v 1.10 2002/08/22 18:53:22 keithp Exp $
*
* Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
*
......@@ -64,7 +64,11 @@ void
FcValueListPrint (const FcValueList *l)
{
for (; l; l = l->next)
{
FcValuePrint (l->value);
if (l->binding == FcValueBindingWeak)
printf ("(w)");
}
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment