diff options
author | Max Kellermann <max@duempel.org> | 2008-12-04 22:43:18 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-04 22:43:18 +0100 |
commit | 389a1ad8a08ae273b33b7501b8070cf6c6b4db43 (patch) | |
tree | 06b447c99d8b3c03ff156dddaaefff03d461733d /src | |
parent | 8ee507c273d17ecd0045240132d29c20ddf07740 (diff) | |
download | mpd-389a1ad8a08ae273b33b7501b8070cf6c6b4db43.tar.gz mpd-389a1ad8a08ae273b33b7501b8070cf6c6b4db43.tar.xz mpd-389a1ad8a08ae273b33b7501b8070cf6c6b4db43.zip |
screen: fixed "screen too small" typo
The "too" had only one 'o'. Remove the newline character at the end
to simplify translation.
Diffstat (limited to 'src')
-rw-r--r-- | src/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen.c b/src/screen.c index 32fc668c0..1a68b4100 100644 --- a/src/screen.c +++ b/src/screen.c @@ -395,7 +395,7 @@ screen_resize(struct mpdclient *c) { if (COLS<SCREEN_MIN_COLS || LINES<SCREEN_MIN_ROWS) { screen_exit(); - fprintf(stderr, _("Error: Screen to small\n")); + fprintf(stderr, "%s", _("Error: Screen too small")); exit(EXIT_FAILURE); } @@ -468,7 +468,7 @@ void screen_init(mpdclient_t *c) { if (COLS < SCREEN_MIN_COLS || LINES < SCREEN_MIN_ROWS) { - fprintf(stderr, _("Error: Screen to small\n")); + fprintf(stderr, "%s\n", _("Error: Screen too small")); exit(EXIT_FAILURE); } |