Skip to content

Commit 636ed01

Browse files
committed
Do not read this commit...
1 parent 9228568 commit 636ed01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lambda.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ static void version(FILE *out) {
553553
* returns true and sets arg to -1 on error
554554
*/
555555
static bool isparam(int argc, char **argv, int *arg, char sh, const char *lng, char **argarg) {
556-
if (!argv[*arg][0] == '-')
556+
if (argv[*arg][0] != '-')
557557
return false;
558558
/* short version */
559559
if (argv[*arg][1] == sh) {

0 commit comments

Comments
 (0)