From 35947b644a33c60418505c5b5b51f9fc0be83f7f Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 24 Mar 2011 21:21:21 +0000 Subject: [PATCH] wtf --- src/misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/misc.c b/src/misc.c index bf77e48a9..e08fa684e 100644 --- a/src/misc.c +++ b/src/misc.c @@ -370,13 +370,13 @@ vector2d v2d_new(float x, float y) } void clipboard_push_text(char * text) -{ß - printf("Not implemented: put text on clipboard \"%s\"", text); +{ + printf("Not implemented: put text on clipboard \"%s\"\n", text); } char * clipboard_pull_text() { - printf("Not implemented: get text from clipboard"); + printf("Not implemented: get text from clipboard\n"); return ""; }