Index: uspace/app/terminal/terminal.c
===================================================================
--- uspace/app/terminal/terminal.c	(revision 48f7e476926b1d211bb3af389b6cd670f5c9218c)
+++ uspace/app/terminal/terminal.c	(revision 959ef5d479a4b1758cc714932e5dbc6aaf49e8fa)
@@ -266,5 +266,5 @@
     sysarg_t sx, sysarg_t sy)
 {
-	bool damage = false;
+	bool update = false;
 
 	sysarg_t front_col;
@@ -286,5 +286,5 @@
 		    front_visibility);
 		term_update_char(term, pixelmap, sx, sy, back_col, back_row);
-		damage = true;
+		update = true;
 	}
 
@@ -293,8 +293,8 @@
 		term_update_char(term, pixelmap, sx, sy, back_col, back_row);
 		term_update_char(term, pixelmap, sx, sy, front_col, front_row);
-		damage = true;
-	}
-
-	return damage;
+		update = true;
+	}
+
+	return update;
 }
 
@@ -315,10 +315,10 @@
 	pixelmap.data = alloc.pixels;
 
-	bool damage = false;
+	bool update = false;
 	sysarg_t sx = 0/*term->widget.hpos*/;
 	sysarg_t sy = 0/*term->widget.vpos*/;
 
 	if (term_update_scroll(term, &pixelmap, sx, sy)) {
-		damage = true;
+		update = true;
 	} else {
 		for (sysarg_t y = 0; y < term->rows; y++) {
@@ -348,5 +348,5 @@
 				if (update) {
 					term_update_char(term, &pixelmap, sx, sy, x, y);
-					damage = true;
+					update = true;
 				}
 			}
@@ -355,12 +355,12 @@
 
 	if (term_update_cursor(term, &pixelmap, sx, sy))
-		damage = true;
-
-	(void) damage; // XXX
-
-	fibril_mutex_unlock(&term->mtx);
-}
-
-static void term_damage(terminal_t *term)
+		update = true;
+
+	(void) update; // XXX
+
+	fibril_mutex_unlock(&term->mtx);
+}
+
+static void term_repaint(terminal_t *term)
 {
 	pixelmap_t pixelmap;
@@ -800,5 +800,5 @@
 	getterm(vc, "/app/bdsh");
 
-	term_damage(term);
+	term_repaint(term);
 
 	*rterm = term;
