fb: use NULL instead of NullClient

No need to have another name for NULL, we can use NULL directly.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-07-16 12:04:49 +02:00
committed by Enrico Weigelt
parent 007155ba97
commit e1d5d60848

View File

@@ -213,7 +213,7 @@ fbSetFg(DrawablePtr pDrawable, GCPtr pGC, Pixel fg)
ChangeGCVal val;
val.val = fg;
ChangeGC(NullClient, pGC, GCForeground, &val);
ChangeGC(NULL, pGC, GCForeground, &val);
ValidateGC(pDrawable, pGC);
}
}