From: Mikael Magnusson Date: Tue, 4 Sep 2007 04:23:18 +0000 (+0200) Subject: Fix using None when it should be NULL X-Git-Tag: buttons~63 X-Git-Url: http://git.openbox.org/?p=dana%2Fopenbox.git;a=commitdiff_plain;h=9b803f4755b73d1e3d28943c4c141493ad36317c Fix using None when it should be NULL --- 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;