Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
cygwin: fix VAR=val loop
Browse files Browse the repository at this point in the history
detected by -Wmisleading-indentation
  • Loading branch information
rurban committed Nov 1, 2018
1 parent 27a7b8a commit e8d9ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cygwin/cygwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ do_spawn (char *cmd)
goto doshell;
if (strBEGINs (cmd,"exec") && isSPACE (cmd[4]))
goto doshell;
for (s=cmd; *s && isALPHA (*s); s++) ; /* catch VAR=val gizmo */
for (s=cmd; *s && isALPHA (*s); s++) /* catch VAR=val gizmo */
if (*s=='=')
goto doshell;

Expand Down

0 comments on commit e8d9ba4

Please sign in to comment.