1
0
mirror of https://github.com/projectatomic/bubblewrap.git synced 2026-02-05 15:45:22 +01:00

Merge pull request #636 from alexlarsson/fix-flag-typo

Fix SetupOpFlag value to be proper format
This commit is contained in:
Simon McVittie
2024-06-18 12:20:35 +01:00
committed by GitHub

View File

@@ -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;