diff options
Diffstat (limited to 'tests/scanner/utility.h')
-rw-r--r-- | tests/scanner/utility.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/scanner/utility.h b/tests/scanner/utility.h index b493a677..cad93ff5 100644 --- a/tests/scanner/utility.h +++ b/tests/scanner/utility.h @@ -62,9 +62,9 @@ typedef enum typedef enum { - UTILITY_FLAG_A, - UTILITY_FLAG_B, - UTILITY_FLAG_C + UTILITY_FLAG_A = 1, + UTILITY_FLAG_B = 2, + UTILITY_FLAG_C = 4 } UtilityFlagType; typedef struct |