Index: uspace/lib/draw/cursor/embedded.c
===================================================================
--- uspace/lib/draw/cursor/embedded.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
+++ uspace/lib/draw/cursor/embedded.c	(revision e0a4686ebb68dd7d42dd083c5ea6c37d6ced027d)
@@ -47,5 +47,5 @@
 	assert(state_count);
 	assert(data);
-	
+
 	(*state_count) = 1;
 	(*data) = NULL;
@@ -56,9 +56,9 @@
 	if (state != 0)
 		return NULL;
-	
+
 	surface_t *surface = surface_create(CURSOR_WIDTH, CURSOR_HEIGHT, NULL, 0);
 	if (!surface)
 		return NULL;
-	
+
 	for (unsigned int y = 0; y < CURSOR_HEIGHT; ++y) {
 		for (unsigned int x = 0; x < CURSOR_WIDTH; ++x) {
@@ -67,10 +67,10 @@
 			pixel_t pixel = (cursor_texture[offset] & (1 << (x % 8))) ?
 			    PIXEL(255, 0, 0, 0) : PIXEL(255, 255, 255, 255);
-			
+
 			if (visible)
 				surface_put_pixel(surface, x, y, pixel);
 		}
 	}
-	
+
 	return surface;
 }
