diff options
author | pixel <pixel> | 2004-04-28 14:24:13 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-04-28 14:24:13 +0000 |
commit | 10d2965791c78a23b2e1ca91f293c3d49f852d78 (patch) | |
tree | 53517f9e0aeb449c98577ffede8ac25ca4f9d8b0 /cd-tool.cpp | |
parent | cdad34d7c341f712a9d883b421f832e89f226879 (diff) |
Fixing and updates for MSVC
Diffstat (limited to 'cd-tool.cpp')
-rw-r--r-- | cd-tool.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cd-tool.cpp b/cd-tool.cpp index edcd91e..e5b2ce5 100644 --- a/cd-tool.cpp +++ b/cd-tool.cpp @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: cd-tool.cpp,v 1.24 2004-04-27 21:38:43 pixel Exp $ */ +/* $Id: cd-tool.cpp,v 1.25 2004-04-28 14:24:17 pixel Exp $ */ #include <getopt.h> #include "Input.h" @@ -66,8 +66,8 @@ enum cdtool_functions_t { struct lua_functypes_t cdtool_functions[] = { { CDTOOL_PRINT, "print", 1, 1, { LUA_STRING } }, - { CDTOOL_QUIT, "quit", 0, 0, { } }, - { CDTOOL_EXIT, "exit", 0, 0, { } }, + { CDTOOL_QUIT, "quit", 0, 0, 0 }, + { CDTOOL_EXIT, "exit", 0, 0, 0 }, { CDTOOL_INFOS, "infos", 0, 1, { LUA_OBJECT } }, { CDTOOL_PATH, "path", 0, 1, { LUA_OBJECT } }, { CDTOOL_PRINTDIR, "printdir", 1, 2, { LUA_STRING, LUA_OBJECT } }, |