]> git.sesse.net Git - nageru/commitdiff
Fix a typo.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 30 Dec 2015 00:34:08 +0000 (01:34 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 30 Dec 2015 00:34:08 +0000 (01:34 +0100)
theme.cpp

index c832d29bcf9a19af4e1269690b355cd876ad6e53..023b02a4650927de1dd457e638c0b67994fb7209 100644 (file)
--- 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);
        }