summaryrefslogtreecommitdiff
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:12:36 -0700
commitce05625b6f97bde0cf8090294e7ba0151b4f1790 (patch)
treed001fee9c1eb60c64f2919ee013d598990a3f083
parenta8ed766f8c4eea40906086228f10785745342694 (diff)
downloadsyslinux-libinstaller_dos_wip.tar.gz
lua: remove obsolete FIXME commentlibinstaller_dos_wip
Remove an obsolete FIXME comment; the problem was caused by a stale library.
-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 {