aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/wm.c')
-rw-r--r--apps/wm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/wm.c b/apps/wm.c
index c4ed193..c6a1a31 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -82,11 +82,12 @@ int main(int argc, char **argv)
struct window *win = iterator->data;
gui_win_on_win(exchange, win, win->x, win->y);
} while ((iterator = iterator->next) != NULL);
- gui_win_on_win(direct, exchange, 0, 0);
+ memcpy(direct->fb, exchange->fb,
+ exchange->pitch * exchange->height);
}
break;
default:
- printf("Unknown WM request %d from pid %d", msg->type, msg->src);
+ printf("Unknown WM request %d from pid %d\n", msg->type, msg->src);
}
};