From 9dc5dc3ae59888a5a194acd37a4af7506813eba5 Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Fri, 30 Jul 2004 08:25:54 +0000 Subject: [PATCH] add missing newlines in warnings git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@738 423420c4-83ab-492f-b58f-81f9feb106b5 --- rdesktop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rdesktop.c b/rdesktop.c index 931d068..d9a9cc1 100644 --- a/rdesktop.c +++ b/rdesktop.c @@ -572,14 +572,14 @@ main(int argc, char *argv[]) #ifdef WITH_RDPSND g_rdpsnd = True; #else - warning("Not compiled with sound support"); + warning("Not compiled with sound support\n"); #endif if (strncmp("off", optarg, 3) == 0) #ifdef WITH_RDPSND g_rdpsnd = False; #else - warning("Not compiled with sound support"); + warning("Not compiled with sound support\n"); #endif optarg = p; @@ -590,7 +590,7 @@ main(int argc, char *argv[]) #ifdef WITH_RDPSND g_rdpsnd = True; #else - warning("Not compiled with sound support"); + warning("Not compiled with sound support\n"); #endif } }