diff options
Diffstat (limited to 'stdlib/a64l.c')
-rw-r--r-- | stdlib/a64l.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/a64l.c b/stdlib/a64l.c index 11ecd6a..9d462c7 100644 --- a/stdlib/a64l.c +++ b/stdlib/a64l.c @@ -19,12 +19,12 @@ #include <stdlib.h> -long +long int a64l (string) const char *string; { - int cnt; - long result = 0l; + size_t cnt; + long int result = 0l; for (cnt = 0; cnt < 6; ++cnt) { |