search for: 70fe346

Displaying 2 results from an estimated 2 matches for "70fe346".

2012 May 04
3
[GIT PULL] elflink fixes
...ine: - /* Should never return */ + /* Only returns if the user pressed enter or input timed out */ enter_cmdline(); + cmdline = ontimeoutlen ? ontimeout : default_cmd; + + goto auto_boot; + return 0; } diff --git a/com32/elflink/ldlinux/readconfig.c b/com32/elflink/ldlinux/readconfig.c index 70fe346..1a8434c 100644 --- a/com32/elflink/ldlinux/readconfig.c +++ b/com32/elflink/ldlinux/readconfig.c @@ -68,6 +68,7 @@ short nohalt = 1; //idle.inc const char *default_cmd = NULL; //"default" command line const char *onerror = NULL; //"onerror" command line +const char *ontime...
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...char *cmdline; + char *src, *dst; + size_t i; - src = adv; + src = (char *)adv; cmdline = dst = malloc(count + 1); if (!dst) { printf("Failed to allocate memory for ADV\n"); diff --git a/com32/elflink/ldlinux/readconfig.c b/com32/elflink/ldlinux/readconfig.c index 4f7a4d2..70fe346 100644 --- a/com32/elflink/ldlinux/readconfig.c +++ b/com32/elflink/ldlinux/readconfig.c @@ -1121,7 +1121,8 @@ do_include: * display/font/kbdmap are rather similar, open a file then do sth */ else if (looking_at(p, "display")) { - char *filename, *dst = KernelName; + const char...