summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/elf/elf_main.c2
-rw-r--r--apps/examples/nxflat/nxflat_main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/elf/elf_main.c b/apps/examples/elf/elf_main.c
index 66a47592c..2b5c0eb5e 100644
--- a/apps/examples/elf/elf_main.c
+++ b/apps/examples/elf/elf_main.c
@@ -321,7 +321,7 @@ int elf_main(int argc, char *argv[])
/* Execute the ELF module */
- ret = exec_module(&bin, 50);
+ ret = exec_module(&bin);
mm_update(&g_mmstep, "after exec_module");
diff --git a/apps/examples/nxflat/nxflat_main.c b/apps/examples/nxflat/nxflat_main.c
index 536bc1dd8..0c4846a5c 100644
--- a/apps/examples/nxflat/nxflat_main.c
+++ b/apps/examples/nxflat/nxflat_main.c
@@ -243,7 +243,7 @@ int nxflat_main(int argc, char *argv[])
/* Execute the ELF module */
- ret = exec_module(&bin, 50);
+ ret = exec_module(&bin);
if (ret < 0)
{
err("ERROR: Failed to execute program '%s'\n", dirlist[i]);