mirror of
https://github.com/curl/curl.git
synced 2026-08-25 13:13:31 +03:00
Fix variable initialization
This commit is contained in:
parent
a9a5a8e45c
commit
1a5749424b
1 changed files with 1 additions and 1 deletions
|
|
@ -219,7 +219,7 @@ static int test_signed_short_formatting(void)
|
|||
|
||||
#if (SIZEOF_SHORT == 1)
|
||||
|
||||
i++; ss_test[i].num = 0x7F; ss_test[i].expected = "127";
|
||||
i=1; ss_test[i].num = 0x7F; ss_test[i].expected = "127";
|
||||
|
||||
i++; ss_test[i].num = 0x70; ss_test[i].expected = "112";
|
||||
i++; ss_test[i].num = 0x07; ss_test[i].expected = "7";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue