blob: 65f4e5148a1b503984dfbda24c3f0e6b1a6ebce0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
diff --git a/src/srvcont.c b/src/srvcont.c
index 2356c7f..fef6f18 100644
--- a/src/srvcont.c
+++ b/src/srvcont.c
@@ -520,7 +520,8 @@ lw_srvcont_wait_teams (LW_SRVCONT * cont,
{
log_print_str ("Unable to bind socket on port ");
log_print_int (port);
- log_println ("!");
+ log_print_str ("!");
+ log_println ();
/*
* We consider this a fatal error and quit the program
diff --git a/utils/liquidwarcol.c b/utils/liquidwarcol.c
index 935eea5..b46a3fe 100644
--- a/utils/liquidwarcol.c
+++ b/utils/liquidwarcol.c
@@ -430,7 +430,7 @@ main (int argc, char **argv)
{
if (FLAG_BACKUP)
save_backup (FILENAMES[i]);
- convert_bitmap (FILENAMES[i]);
+ convert_bitmap ();
save_file (FILENAMES[i]);
}
}
|