diff options
Diffstat (limited to 'src/conversion.c')
-rw-r--r-- | src/conversion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conversion.c b/src/conversion.c index 17dce7f3..f5dd7ea2 100644 --- a/src/conversion.c +++ b/src/conversion.c @@ -434,10 +434,10 @@ _gpgme_strtoul_field (const char *string, unsigned long *result) /* Convert STRING into an offset value. Note that this functions only * allows for a base-10 length. This function is similar to atoi() * and thus there is no error checking. */ -gpgme_off_t +uint64_t _gpgme_string_to_off (const char *string) { - gpgme_off_t value = 0; + uint64_t value = 0; while (*string == ' ' || *string == '\t') string++; |