diff options
author | David Robillard <d@drobilla.net> | 2022-10-07 15:19:39 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-07 15:22:43 -0400 |
commit | 17d90bda87dd445a974de7e644629593ade617d8 (patch) | |
tree | 319a23c713a4d089863d9c169d63a1d2d413521c /test/test_timer.c | |
parent | ed4c8a50505ab02a8f3a01e41f5f86acca04b81d (diff) | |
download | pugl-17d90bda87dd445a974de7e644629593ade617d8.tar.gz pugl-17d90bda87dd445a974de7e644629593ade617d8.tar.bz2 pugl-17d90bda87dd445a974de7e644629593ade617d8.zip |
Use uppercase integer literal suffixes
Diffstat (limited to 'test/test_timer.c')
-rw-r--r-- | test/test_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_timer.c b/test/test_timer.c index 401e4d5..34223c9 100644 --- a/test/test_timer.c +++ b/test/test_timer.c @@ -29,7 +29,7 @@ static const double timeout = -1.0; // Windows SetTimer has a maximum resolution of 10ms static const double tolerance = 0.012; -static const uintptr_t timerId = 1u; +static const uintptr_t timerId = 1U; static const double timerPeriod = 1 / 60.0; typedef enum { |