1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-05 21:34:17 +01:00

Fix some double newlines

Just a couple that woud now print double (or several more) newlines.

Signed-off-by: Tamas TEVESZ <ice@extreme.hu>
This commit is contained in:
Tamas TEVESZ
2010-09-28 02:09:51 +02:00
committed by Carlos R. Mafra
parent 8594c39a0b
commit 94a0c7b42f
11 changed files with 87 additions and 90 deletions

View File

@@ -387,7 +387,7 @@ char *LocateImage(char *name)
}
wfree(tmp);
if (!path) {
wwarning(_("could not locate image file %s\n"), name);
wwarning(_("could not locate image file %s"), name);
}
return path;
@@ -962,7 +962,7 @@ int GetSpeedForKey(char *defaultName)
else if (strcasecmp(str, "ultrafast") == 0)
i = 4;
else {
wwarning(_("bad speed value for option %s\n. Using default Medium"), defaultName);
wwarning(_("bad speed value for option %s; using default Medium"), defaultName);
i = 2;
}
return i;