guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 02/02: typo, lost a parenthesis


From: Mike Gran
Subject: [Guile-commits] 02/02: typo, lost a parenthesis
Date: Thu, 19 Apr 2018 20:24:00 -0400 (EDT)

mike121 pushed a commit to branch wip-mingw-guile-2.2
in repository guile.

commit 925485c27615ad20884b96fd6cff6d3dc08013de
Author: Michael Gran <address@hidden>
Date:   Thu Apr 19 17:10:52 2018 -0700

    typo, lost a parenthesis
    
    * libguile/posix-w32.c (start_child): fix build regression
---
 libguile/posix-w32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/posix-w32.c b/libguile/posix-w32.c
index 6a483c4..e7d0ef5 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");
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]