diff options
| -rw-r--r-- | tools/wdye/wdye.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wdye/wdye.c b/tools/wdye/wdye.c index ece3038..ed4f128 100644 --- a/tools/wdye/wdye.c +++ b/tools/wdye/wdye.c @@ -1312,7 +1312,7 @@ main (int argc, char *argv[])  	if (luaL_loadfile (g.L, path)  	 || lua_pcall (g.L, 0, 0, -2))  	{ -		print_error ("%s: %s", path, lua_tostring (g.L, -1)); +		print_error ("%s", lua_tostring (g.L, -1));  		lua_pop (g.L, 1);  		lua_close (g.L);  		return 1;  | 
