summaryrefslogtreecommitdiffstats
path: root/xup
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2012-05-11 20:11:58 -0700
committerJay Sorg <jay.sorg@gmail.com>2012-05-11 20:11:58 -0700
commitc50425032c9da4950d41845c668e4056325e7737 (patch)
tree3ce2c401425f19717071e375479112fad653e525 /xup
parent273cb8a3766cd30ac72913421336042269dc4196 (diff)
downloadxrdp-proprietary-c50425032c9da4950d41845c668e4056325e7737.tar.gz
xrdp-proprietary-c50425032c9da4950d41845c668e4056325e7737.zip
xorg: change default resolution to 1024x768
Diffstat (limited to 'xup')
-rw-r--r--xup/xup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/xup/xup.c b/xup/xup.c
index 5d31b751..adcfde89 100644
--- a/xup/xup.c
+++ b/xup/xup.c
@@ -498,7 +498,7 @@ lib_mod_signal(struct mod* mod)
}
else if (type == 2) /* caps */
{
- g_writeln("lib_mod_signal: type 2 len %d\n", len);
+ g_writeln("lib_mod_signal: type 2 len %d", len);
init_stream(s, len);
rv = lib_recv(mod, s->data, len);
if (rv == 0)
@@ -511,7 +511,8 @@ lib_mod_signal(struct mod* mod)
switch (type)
{
default:
- g_writeln("lib_mod_signal: unknown cap type %d len %d", type, len);
+ g_writeln("lib_mod_signal: unknown cap type %d len %d",
+ type, len);
break;
}
s->p = phold + len;