summaryrefslogtreecommitdiffstats
path: root/xup/xup.c
diff options
context:
space:
mode:
Diffstat (limited to 'xup/xup.c')
-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;