Index: uspace/lib/c/include/io/pixelmap.h
===================================================================
--- uspace/lib/c/include/io/pixelmap.h	(revision 3be9d10120f7923a0b3d52282b8de0b670566c71)
+++ uspace/lib/c/include/io/pixelmap.h	(revision 1abcf1db7c2a8071caaf9983f1571b2ef88e1be6)
@@ -81,5 +81,5 @@
 
 static inline void pixelmap_put_pixel(
-    pixelmap_t * pixelmap,
+    pixelmap_t *pixelmap,
     sysarg_t x,
     sysarg_t y,
@@ -112,6 +112,5 @@
 		x %= pixmap->width;
 		y %= pixmap->height;
-	}
-	else if (extend == PIXELMAP_EXTEND_SIDES ||
+	} else if (extend == PIXELMAP_EXTEND_SIDES ||
 	    extend == PIXELMAP_EXTEND_TRANSPARENT_SIDES) {
 		bool transparent_outside =
@@ -120,6 +119,5 @@
 			x = 0;
 			transparent = transparent_outside;
-		}
-		else if (((sysarg_t) x) >= pixmap->width) {
+		} else if (((sysarg_t) x) >= pixmap->width) {
 			x = pixmap->width - 1;
 			transparent = transparent_outside;
@@ -129,6 +127,5 @@
 			y = 0;
 			transparent = transparent_outside;
-		}
-		else if (((sysarg_t) y) >= pixmap->height) {
+		} else if (((sysarg_t) y) >= pixmap->height) {
 			y = pixmap->height - 1;
 			transparent = transparent_outside;
