Fix typo in tst_strtoll_strtoull. The wrong function was called for unsigned long long type.
This commit is contained in:
parent
6219b2de00
commit
8eabf67e1e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
x = (x >> shift);
|
||||||
if (x != 1) {
|
if (x != 1) {
|
||||||
printf ("Windows: strtoull error\n");
|
printf ("Windows: strtoull error\n");
|
||||||
|
|
Loading…
Add table
Reference in a new issue