mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-29 06:10:09 +08:00
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
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user