diff options
Diffstat (limited to 'test/ringbuffer_test.cpp')
-rw-r--r-- | test/ringbuffer_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ringbuffer_test.cpp b/test/ringbuffer_test.cpp index ee9af30..1f94b02 100644 --- a/test/ringbuffer_test.cpp +++ b/test/ringbuffer_test.cpp @@ -109,12 +109,12 @@ main(int argc, char** argv) Context ctx; - uint32_t size = 512u; + uint32_t size = 512U; if (argc > 1) { size = static_cast<uint32_t>(std::stoi(argv[1])); } - ctx.n_writes = size * 1024u; + ctx.n_writes = size * size_t{1024U}; if (argc > 2) { ctx.n_writes = std::stoul(argv[2]); } |