summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Ritter <unrzl1@linux.rrze.uni-erlangen.de>2009-10-15 09:02:49 +0200
committerMarcel Ritter <unrzl1@linux.rrze.uni-erlangen.de>2009-10-15 09:02:49 +0200
commitc03c9f0188fd4b1574976f2a76d2508dd5ee2d63 (patch)
treecf9d0068ba3a42d8c3ae2f83ef95548ddac1a814
parent3121db785f0b290b40f3b9315ab3843c76e53542 (diff)
downloadsyslinux-c03c9f0188fd4b1574976f2a76d2508dd5ee2d63.tar.gz
Disabled debug output
-rw-r--r--com32/lua/src/syslinux.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/com32/lua/src/syslinux.c b/com32/lua/src/syslinux.c
index bc6d3537..cafa8254 100644
--- a/com32/lua/src/syslinux.c
+++ b/com32/lua/src/syslinux.c
@@ -189,18 +189,19 @@ static int sl_boot_linux(lua_State *L)
argv[0] = newcmdline;
argp = argv;
- /* DEBUG */
+ /* DEBUG
for (i=0; i<ret; i++)
printf("%d: %s\n", i, argv[i]);
+ */
newcmdline = make_cmdline(argp);
if (!newcmdline)
printf("Creating command line failed!\n");
- /* DEBUG */
+ /* DEBUG
printf("Command line: %s\n", newcmdline);
-
sleep(1000);
+ */
/* Look for specific command-line arguments we care about */
if ((arg = find_argument(argp, "mem=")))