Fix typo in tst_strtoll_strtoull. The wrong function was called for unsigned long long type.

This commit is contained in:
Christian Jullien 2022-11-12 06:55:39 +01:00
parent 6219b2de00
commit 8eabf67e1e

View File

@ -117,7 +117,7 @@ void tst_strtoll_strtoull(void)
}
{
unsigned long long x = strtoll("0x100000000", NULL, 0);
unsigned long long x = strtoull("0x100000000", NULL, 0);
x = (x >> shift);
if (x != 1) {
printf ("Windows: strtoull error\n");