From 32f69c36e0eec1227934bbd34854bfebd88686f2 Mon Sep 17 00:00:00 2001 From: rsc Date: Thu, 11 Dec 2003 17:48:38 +0000 Subject: Add support for user-level 9P servers/clients and various bug fixes to go with them. --- src/libdraw/x11-fill.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libdraw/x11-fill.c') diff --git a/src/libdraw/x11-fill.c b/src/libdraw/x11-fill.c index ff0b2e86..33fc6a2a 100644 --- a/src/libdraw/x11-fill.c +++ b/src/libdraw/x11-fill.c @@ -13,13 +13,13 @@ memfillcolor(Memimage *m, u32int val) if(m->X == nil) return; if((val & 0xFF) == 0xFF) /* full alpha */ - xfillcolor(m, m->r, _rgbatoimg(m, val)); + _xfillcolor(m, m->r, _rgbatoimg(m, val)); else - xputxdata(m, m->r); + _xputxdata(m, m->r); } void -xfillcolor(Memimage *m, Rectangle r, u32int v) +_xfillcolor(Memimage *m, Rectangle r, u32int v) { Point p; Xmem *xm; -- cgit v1.2.3