[primitives,test] use same parameter names

use the same parameter names for declaration and implementation
This commit is contained in:
akallabeth 2024-09-11 22:20:35 +02:00
parent 993756e575
commit 3682e11e55
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5

View File

@ -80,9 +80,9 @@ void prim_test_setup(BOOL performance)
}
BOOL speed_test(const char* name, const char* dsc, UINT32 iterations, speed_test_fkt generic,
speed_test_fkt optimised, ...)
speed_test_fkt optimized, ...)
{
if (!name || !generic || !optimised || (iterations == 0))
if (!name || !generic || !optimized || (iterations == 0))
return FALSE;
for (UINT32 i = 0; i < iterations; i++)