]> Dogcows Code - chaz/openbox/commitdiff
Fix using None when it should be NULL
authorMikael Magnusson <mikachu@comhem.se>
Tue, 4 Sep 2007 04:23:18 +0000 (06:23 +0200)
committerMikael Magnusson <mikachu@comhem.se>
Tue, 4 Sep 2007 04:25:31 +0000 (06:25 +0200)
render/mask.c

index 10ce8d0f0e14ebcbb01db942773952c5c6a64cb6..b6e3c443eaac3efa88a5c12593ed0f4d0bc82e3a 100644 (file)
@@ -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;
This page took 0.0217 seconds and 4 git commands to generate.