summaryrefslogtreecommitdiff
path: root/stmhal/pyexec.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-10-22 19:13:28 +0100
committerDamien George <damien.p.george@gmail.com>2014-10-22 19:14:20 +0100
commit3be6984b8f435d108a04102d21346bf498b32f67 (patch)
treec8b6ce86cbdfccbb1d9cd88ed6b0c1e2dbcfce6c /stmhal/pyexec.h
parent8d62bbd46aa178abc6e029b0ba79d915f7f988c2 (diff)
stmhal: Don't return SystemExit value from parse_compile_execute.
There is no need, since we don't (currently) use the value.
Diffstat (limited to 'stmhal/pyexec.h')
-rw-r--r--stmhal/pyexec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pyexec.h b/stmhal/pyexec.h
index dec241dee..e36027351 100644
--- a/stmhal/pyexec.h
+++ b/stmhal/pyexec.h
@@ -35,6 +35,6 @@ extern pyexec_mode_kind_t pyexec_mode_kind;
int pyexec_raw_repl(void);
int pyexec_friendly_repl(void);
-bool pyexec_file(const char *filename);
+int pyexec_file(const char *filename);
MP_DECLARE_CONST_FUN_OBJ(pyb_set_repl_info_obj);