lua: remove obsolete FIXME comment
authorGeert Stappers <stappers@stappers.nl>
Tue, 20 Jul 2010 22:12:36 +0000 (15:12 -0700)
committerH. Peter Anvin <hpa@linux.intel.com>
Tue, 20 Jul 2010 22:14:20 +0000 (15:14 -0700)
Remove an obsolete FIXME comment; the problem was caused by a stale
library.

com32/lua/src/dmi.c

index 0c89ea9..d030533 100644 (file)
@@ -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 {