From: Max Kellermann Date: Fri, 13 Dec 2013 10:18:18 +0000 (+0100) Subject: fix typo in error message X-Git-Tag: v0.22~13 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=94509486ed20d2ea86f7cd8f98cf661306b9b3bd;p=ncmpc.git fix typo in error message --- diff --git a/src/main.c b/src/main.c index 6d0633e..4c0f881 100644 --- a/src/main.c +++ b/src/main.c @@ -314,7 +314,7 @@ timer_reconnect(gcc_unused gpointer data) if (mpd_connection_cmp_server_version(connection, 0, 16, 0) < 0) { const unsigned *version = mpd_connection_get_server_version(connection); - screen_status_printf(_("Error: MPD version %d.%d.%d is to old (%s needed)"), + screen_status_printf(_("Error: MPD version %d.%d.%d is too old (%s needed)"), version[0], version[1], version[2], "0.16.0"); mpdclient_disconnect(mpd);