From: Mikael Magnusson Date: Tue, 4 Sep 2007 04:23:18 +0000 (+0200) Subject: Fix using None when it should be NULL X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=9b803f4755b73d1e3d28943c4c141493ad36317c;p=chaz%2Fopenbox Fix using None when it should be NULL --- diff --git a/render/mask.c b/render/mask.c index 10ce8d0f..b6e3c443 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;