summaryrefslogtreecommitdiff
path: root/com32/lua
diff options
context:
space:
mode:
authorGeert Stappers <stappers@stappers.nl>2010-07-20 15:12:36 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2010-07-20 15:14:20 -0700
commit7eceb896582832c27b1dd09daf521ccf826acf3c (patch)
tree65e4440eac5db379c8ac1e8660d5efeb7cb11d2f /com32/lua
parent2ab078d9ac9d621443b3d31599c043d3bf690e65 (diff)
downloadsyslinux-7eceb896582832c27b1dd09daf521ccf826acf3c.tar.gz
lua: remove obsolete FIXME comment
Remove an obsolete FIXME comment; the problem was caused by a stale library.
Diffstat (limited to 'com32/lua')
-rw-r--r--com32/lua/src/dmi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/com32/lua/src/dmi.c b/com32/lua/src/dmi.c
index 0c89ea9a..d0305333 100644
--- a/com32/lua/src/dmi.c
+++ b/com32/lua/src/dmi.c
@@ -15,7 +15,6 @@ static int dmi_gettable(lua_State *L)
lua_newtable(L);
- /* FIXME initalize *dmi */
if ( ! dmi_iterate(&dmi) ) {
printf("No DMI Structure found\n");
return -1;
@@ -279,7 +278,6 @@ static int dmi_supported(lua_State *L)
{
s_dmi dmi;
- /* FIXME initalize *dmi */
if ( dmi_iterate(&dmi) ) {
lua_pushboolean(L, 1);
} else {