summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gran <spk121@yahoo.com>2018-04-19 17:10:52 -0700
committerMichael Gran <spk121@yahoo.com>2018-04-19 17:10:52 -0700
commit925485c27615ad20884b96fd6cff6d3dc08013de (patch)
tree5910fb78555c8267d96e9ead8d92edf8c0e90960
parentd21e7074c77a4d169ca996188bd673e35aa11530 (diff)
downloadguile-925485c27615ad20884b96fd6cff6d3dc08013de.tar.gz
typo, lost a parenthesis
* libguile/posix-w32.c (start_child): fix build regression
-rw-r--r--libguile/posix-w32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/posix-w32.c b/libguile/posix-w32.c
index 6a483c47e..e7d0ef5e1 100644
--- a/libguile/posix-w32.c
+++ b/libguile/posix-w32.c
@@ -744,7 +744,7 @@ start_child (const char *exec_file, char **argv,
* But if there are no arguments, this would just open an interactive
* cmd.exe shell, so return in that case. */
if ((errno_save == ENOEXEC || errno_save == ENOENT)
- && (argv[0] != NULL && argv[1] != NULL)
+ && (argv[0] != NULL && argv[1] != NULL))
{
const char *shell = getenv ("ComSpec");