]> git.sesse.net Git - vlc/blobdiff - modules/misc/lua/libs/misc.c
Revert "Use pushliteral instead of pushstring where possible. Saves a strlen call."
[vlc] / modules / misc / lua / libs / misc.c
index ca1e69ced821326b86b3e359e16b62a66cd5877d..10d1424a1a8f3889985726d68f4350af24bc94ea 100644 (file)
@@ -99,7 +99,7 @@ static int vlclua_copyright( lua_State *L )
  *****************************************************************************/
 static int vlclua_license( lua_State *L )
 {
-    lua_pushliteral( L, LICENSE_MSG );
+    lua_pushstring( L, LICENSE_MSG );
     return 1;
 }