diff options
Diffstat (limited to 'jump.c')
| -rw-r--r-- | jump.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jump.c b/jump.c index 5110ae9..23d9801 100644 --- a/jump.c +++ b/jump.c @@ -28,14 +28,14 @@ static const void *destination; */ static uint64_t getenvull(const char *name) { - const char *const s = getenv(name); - if (s == NULL) + const char *const str = getenv(name); + if (str == NULL) return 0ULL; errno = 0; - const uint64_t u = strtoull(s, NULL, 0); + const uint64_t ull = strtoull(str, NULL, 0); if (errno) return 0ULL; - return u; + return ull; } void init(int argc, const char *const *argv, char **envp) |
