diff options
Diffstat (limited to 'Src/exec.c')
-rw-r--r-- | Src/exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/exec.c b/Src/exec.c index f711f3d30..751282127 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -2012,7 +2012,7 @@ execcmd(Estate state, int input, int output, int how, int last1) /* autoload the builtin if necessary */ if (!((Builtin) hn)->handlerfunc) { - load_module(((Builtin) hn)->optstr); + (void)load_module(((Builtin) hn)->optstr, NULL); hn = builtintab->getnode(builtintab, cmdarg); } assign = (hn && (hn->flags & BINF_MAGICEQUALS)); @@ -2229,7 +2229,7 @@ execcmd(Estate state, int input, int output, int how, int last1) /* autoload the builtin if necessary */ if (!((Builtin) hn)->handlerfunc) { - load_module(((Builtin) hn)->optstr); + (void)load_module(((Builtin) hn)->optstr, NULL); hn = builtintab->getnode(builtintab, cmdarg); } break; |