Introduction
Introduction Statistics Contact Development Disclaimer Help
Fix error in arg.h - blind - suckless command-line video editing utility
git clone git://git.suckless.org/blind
Log
Files
Refs
README
LICENSE
---
commit 1095edd05b2962a49f8576757090c92e5b6d87ef
parent c5a6b2a07e7188d49260df56494b53d592f7764f
Author: Mattias Andrée <[email protected]>
Date: Wed, 18 Oct 2017 19:07:13 +0200
Fix error in arg.h
Signed-off-by: Mattias Andrée <[email protected]>
Diffstat:
M src/arg.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/arg.h b/src/arg.h
@@ -10,7 +10,7 @@ extern char *argv0;
/* use main(int argc, char *argv[]) */
#define ARGBEGIN for (argv0 = *argv, argv++, argc--;\
- argv[0] && argv[0][0] == '-' && argv[0…
+ argv[0] && argv[0][0] && argv[0][1];\
argc--, argv++) {\
char argc_;\
char **argv_;\
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.