Skip to content

Commit

Permalink
Merge pull request #636 from alexlarsson/fix-flag-typo
Browse files Browse the repository at this point in the history
Fix SetupOpFlag value to be proper format
  • Loading branch information
smcv authored Jun 18, 2024
2 parents 8e51677 + 83af951 commit 973fe36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bubblewrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ typedef enum {

typedef enum {
NO_CREATE_DEST = (1 << 0),
ALLOW_NOTEXIST = (2 << 0),
ALLOW_NOTEXIST = (1 << 1),
} SetupOpFlag;

typedef struct _SetupOp SetupOp;
Expand Down

0 comments on commit 973fe36

Please sign in to comment.