commit c35a7cc631f65c8834a7ff12154bb0c2a8a63733
Author:     Quentin Rameau <[email protected]>
AuthorDate: Mon Jul 4 16:32:19 2016 +0200
Commit:     Quentin Rameau <[email protected]>
CommitDate: Mon Jul 4 20:35:46 2016 +0200

    [arg.h] fix block closing count logic
    
    This fixes a bug introduced in 72b2248a.

diff --git a/inc/arg.h b/inc/arg.h
index da5455c..511d56c 100644
--- a/inc/arg.h
+++ b/inc/arg.h
@@ -32,9 +32,13 @@ for (argv0 = *argv, argv++, argc--;\
 
 #define ARGOPERAND \
                }\
-       } else if (argv[0][0] != '\0')
+       } else if (argv[0][0] != '\0') {\
+               {
 
-#define ARGEND }
+#define ARGEND \
+               }\
+       }\
+}
 
 #define ARGC() argc_
 

Reply via email to