crop: use strtol() instead of atoi()
parent
953387d7ba
commit
2513946536
|
@ -27,11 +27,7 @@ getint(char *s)
|
||||||
{
|
{
|
||||||
if(s == nil)
|
if(s == nil)
|
||||||
usage();
|
usage();
|
||||||
if(*s == '+')
|
return strtol(s, 0, 0);
|
||||||
return atoi(s+1);
|
|
||||||
if(*s == '-')
|
|
||||||
return -atoi(s+1);
|
|
||||||
return atoi(s);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle
|
Rectangle
|
||||||
|
|
Loading…
Reference in New Issue