* src/wget.h: Use strtoll() for str_to_wgint

This fixes a regression reported at https://savannah.gnu.org/bugs/?60353.

Reported-by: Michal Ruprich
This commit is contained in:
Tim Rühsen 2021-04-11 12:53:16 +02:00
parent fd2a061f6a
commit 90631a6fe5

View File

@ -144,7 +144,7 @@ typedef int64_t wgint;
#define WGINT_MIN INT64_MIN
#define WGINT_MAX INT64_MAX
#define str_to_wgint strtol
#define str_to_wgint strtoll
#include "options.h"