mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
fixed signedness
This commit is contained in:
parent
b7c579f79d
commit
9083ea41dc
@ -90,7 +90,7 @@ int main(int argc, char **argv)
|
||||
if (argc == 2)
|
||||
N = atoi(argv[1]);
|
||||
|
||||
for (int i = 1; i <= N; i++)
|
||||
for (unsigned int i = 1; i <= N; i++)
|
||||
{
|
||||
int carry = 0;
|
||||
#ifdef DEBUG
|
||||
|
Loading…
Reference in New Issue
Block a user