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 c5a6b2a07e7188d49260df56494b53d592f7764f
parent 20686557e974b5f6b697ad25ec5e8f510bec3063
Author: Mattias Andrée <[email protected]>
Date: Wed, 18 Oct 2017 19:04:54 +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][1];\
+ argv[0] && argv[0][0] == '-' && argv[0…
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.