Fixed a warning in Linux build.

This commit is contained in:
LoRd_MuldeR 2022-11-25 17:13:12 +01:00
parent 43996ceac2
commit 21995cd5ee

View File

@ -6,6 +6,7 @@
#include <hash_set.h>
#include <stdio.h>
#include <inttypes.h>
#include <time.h>
#include <string.h>
#include <errno.h>
@ -293,7 +294,7 @@ static int test_function_3(hash_set_t *const hash_set)
else
{
PRINT_SET_INFO(3);
printf("Collision detected! [%016llX]\n", rnd);
printf("Collision detected! [%016" PRIx64 "]\n", rnd);
break;
}
}