Skip to content

Commit

Permalink
Do not read this commit...
Browse files Browse the repository at this point in the history
  • Loading branch information
Blub committed Jun 21, 2014
1 parent 9228568 commit 636ed01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda.c
Expand Up @@ -553,7 +553,7 @@ static void version(FILE *out) {
* returns true and sets arg to -1 on error
*/
static bool isparam(int argc, char **argv, int *arg, char sh, const char *lng, char **argarg) {
if (!argv[*arg][0] == '-')
if (argv[*arg][0] != '-')
return false;
/* short version */
if (argv[*arg][1] == sh) {
Expand Down

1 comment on commit 636ed01

@benwaffle
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol

Please sign in to comment.