diff options
Diffstat (limited to 'include/uuid.h')
-rw-r--r-- | include/uuid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uuid.h b/include/uuid.h index 1f4fa103b5e..7f8414dc906 100644 --- a/include/uuid.h +++ b/include/uuid.h @@ -70,8 +70,8 @@ struct uuid { /* Bits of a bitmask specifying the output format for GUIDs */ #define UUID_STR_FORMAT_STD 0 -#define UUID_STR_FORMAT_GUID BIT(0) -#define UUID_STR_UPPER_CASE BIT(1) +#define UUID_STR_FORMAT_GUID 0x1 +#define UUID_STR_UPPER_CASE 0x2 /* Use UUID_STR_LEN + 1 for string space */ #define UUID_STR_LEN 36 |