mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 02:40:11 +01:00
util/tests/vma: Fix warning c++11-narrowing
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106801
Fixes: 943fecc569 ("util: Add a randomized test for the virtual memory allocator")
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
parent
4b123fb74b
commit
08535dd886
1 changed files with 1 additions and 1 deletions
|
|
@ -236,7 +236,7 @@ int main(int argc, char **argv)
|
|||
errx(1, "USAGE: %s seed iter_count\n", argv[0]);
|
||||
}
|
||||
|
||||
random_test r{seed};
|
||||
random_test r{(uint_fast32_t)seed};
|
||||
r.test(count);
|
||||
|
||||
printf("ok\n");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue