Index: uspace/lib/draw/drawctx.c
===================================================================
--- uspace/lib/draw/drawctx.c	(revision 36470ce8f1d0f0e1ac58746fc8bd8bf3bed80974)
+++ uspace/lib/draw/drawctx.c	(revision 7c3fb9bd77e4d2f6c10517a052e567f176fa91ee)
@@ -182,9 +182,11 @@
 	}
 
-	/* Note:
+	/*
+	 * Note:
 	 * Antialiasing could be achieved by up-scaling path coordinates and
 	 * rendering into temporary higher-resolution surface. Then, the temporary
 	 * surface would be set as a source and its damaged region would be
-	 * transferred to the original surface. */
+	 * transferred to the original surface.
+	 */
 
 	list_foreach(*((list_t *) path), link, path_step_t, step) {
Index: uspace/lib/draw/font.h
===================================================================
--- uspace/lib/draw/font.h	(revision 36470ce8f1d0f0e1ac58746fc8bd8bf3bed80974)
+++ uspace/lib/draw/font.h	(revision 7c3fb9bd77e4d2f6c10517a052e567f176fa91ee)
@@ -55,10 +55,14 @@
 	metric_t width;
 
-	/* Horizontal distance between right side of the glyph and origin
-	   of the next glyph */
+	/*
+	 * Horizontal distance between right side of the glyph and origin
+	 * of the next glyph
+	 */
 	metric_t right_side_bearing;
 
-	/* Vertical distance between baseline and top of the glyph
-	   (positive to top) */
+	/*
+	 * Vertical distance between baseline and top of the glyph
+	 * (positive to top)
+	 */
 	metric_t ascender;
 
