From fc6d15eb4f63e250edb6e43b9b6867d9dcff6c4e Mon Sep 17 00:00:00 2001 From: batrick Date: Sun, 17 May 2009 19:43:21 +0000 Subject: [PATCH] Removed some extraneous whitespace. --- nse_nmaplib.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nse_nmaplib.cc b/nse_nmaplib.cc index bb2693729..77c166176 100644 --- a/nse_nmaplib.cc +++ b/nse_nmaplib.cc @@ -413,7 +413,7 @@ static int l_set_port_version (lua_State *L) if (!lua_istable(L, -1)) luaL_error(L, "port 'version' field must be a table"); const char - *name = (lua_getfield(L, 4, "name") , lua_tostring(L, -1)), + *name = (lua_getfield(L, 4, "name"), lua_tostring(L, -1)), *product = (lua_getfield(L, 4, "product"), lua_tostring(L, -1)), *version = (lua_getfield(L, 4, "version"), lua_tostring(L, -1)), *extrainfo = (lua_getfield(L, 4, "extrainfo"), lua_tostring(L, -1)),