From 9b803f4755b73d1e3d28943c4c141493ad36317c Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Tue, 4 Sep 2007 06:23:18 +0200 Subject: [PATCH] Fix using None when it should be NULL --- render/mask.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render/mask.c b/render/mask.c index 10ce8d0..b6e3c44 100644 --- a/render/mask.c +++ b/render/mask.c @@ -47,7 +47,7 @@ void RrPixmapMaskFree(RrPixmapMask *m) void RrPixmapMaskDraw(Pixmap p, const RrTextureMask *m, const RrRect *area) { gint x, y; - if (m->mask == None) return; /* no mask given */ + if (m->mask == NULL) return; /* no mask given */ /* set the clip region */ x = area->x + (area->width - m->mask->width) / 2; -- 1.9.1