diff options
Diffstat (limited to 'com32')
-rw-r--r-- | com32/elflink/ldlinux/readconfig.c | 2 | ||||
-rw-r--r-- | com32/menu/readconfig.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/com32/elflink/ldlinux/readconfig.c b/com32/elflink/ldlinux/readconfig.c index d6e34bda..3ee825d7 100644 --- a/com32/elflink/ldlinux/readconfig.c +++ b/com32/elflink/ldlinux/readconfig.c @@ -1164,7 +1164,7 @@ do_include: allowoptions = !!atoi(skipspace(p + 12)); } else if ((ep = looking_at(p, "ipappend")) || (ep = looking_at(p, "sysappend"))) { - uint32_t s = strtoul(skipspace(ep), NULL, 16); + uint32_t s = strtoul(skipspace(ep), NULL, 0); if (ld.label) ld.ipappend = s; else diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c index adec8a7d..b7814be2 100644 --- a/com32/menu/readconfig.c +++ b/com32/menu/readconfig.c @@ -1046,7 +1046,7 @@ do_include: m->allowedit = !!atoi(skipspace(p + 12)); } else if ((ep = looking_at(p, "ipappend")) || (ep = looking_at(p, "sysappend"))) { - uint32_t s = atoi(skipspace(ep)); + uint32_t s = strtoul(skipspace(ep), NULL, 0); if (ld.label) ld.ipappend = s; else |