From 3441a73300e33489072c8c9f0bec317bf86e8c9f Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 30 Dec 2015 01:34:08 +0100 Subject: [PATCH] Fix a typo. --- theme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2