From 71c4a3a6d66e96661fd341e1a089c4d8bd63fb13 Mon Sep 17 00:00:00 2001 From: David Robillard <d@drobilla.net> Date: Tue, 28 Jun 2022 18:48:41 -0400 Subject: Use uppercase integer literal suffixes I give in. --- include/zix/btree.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/zix') diff --git a/include/zix/btree.h b/include/zix/btree.h index 92e5c5f..24a0171 100644 --- a/include/zix/btree.h +++ b/include/zix/btree.h @@ -33,7 +33,7 @@ extern "C" { height of 6 is enough to store trillions. */ #ifndef ZIX_BTREE_MAX_HEIGHT -# define ZIX_BTREE_MAX_HEIGHT 6u +# define ZIX_BTREE_MAX_HEIGHT 6U #endif /// A B-Tree @@ -60,8 +60,8 @@ typedef struct { /// A static end iterator for convenience static const ZixBTreeIter zix_btree_end_iter = { {NULL, NULL, NULL, NULL, NULL, NULL}, - {0u, 0u, 0u, 0u, 0u, 0u}, - 0u}; + {0U, 0U, 0U, 0U, 0U, 0U}, + 0U}; /** Create a new (empty) B-Tree. -- cgit v1.2.1