add missing newlines in warnings

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@738 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Michael Gernoth 2004-07-30 08:25:54 +00:00
parent dc156f8fcd
commit 9dc5dc3ae5

View File

@ -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
}
}