about summary refs log tree commit diff
path: root/stdlib/a64l.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/a64l.c')
-rw-r--r--stdlib/a64l.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/a64l.c b/stdlib/a64l.c
index 11ecd6a054..9d462c77f3 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)
     {