From: Steinar H. Gunderson Date: Wed, 30 Dec 2015 00:34:08 +0000 (+0100) Subject: Fix a typo. X-Git-Tag: 1.0.0~61 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=3441a73300e33489072c8c9f0bec317bf86e8c9f Fix a typo. --- diff --git a/theme.cpp b/theme.cpp index c832d29..023b02a 100644 --- a/theme.cpp +++ b/theme.cpp @@ -701,7 +701,7 @@ std::string Theme::get_channel_name(unsigned channel) lua_getglobal(L, "channel_name"); lua_pushnumber(L, channel); if (lua_pcall(L, 1, 1, 0) != 0) { - fprintf(stderr, "error running function `channel_nam': %s\n", lua_tostring(L, -1)); + fprintf(stderr, "error running function `channel_name': %s\n", lua_tostring(L, -1)); exit(1); }