1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Fix patches due to missing atol().

PR:		56063 (originallY)
Submitted by:	Peter Pentchev <roam@ringlet.net>
This commit is contained in:
Edwin Groothuis 2003-10-03 10:56:33 +00:00
parent 5e61406378
commit e4769a3933
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=90088

View File

@ -54,7 +54,7 @@
break;
case 'q':
- seq_start = atol (optarg);
+ seq_start = atoll (optarg);
+ seq_start = strtoll (optarg, NULL, 10);
break;
case 'w':
win_len = atoi(optarg);