diff options
Diffstat (limited to 'byterun/str.c')
-rw-r--r-- | byterun/str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/str.c b/byterun/str.c index 08bbf839e..8151fa37c 100644 --- a/byterun/str.c +++ b/byterun/str.c @@ -83,7 +83,7 @@ CAMLprim value caml_string_notequal(value s1, value s2) CAMLprim value caml_string_compare(value s1, value s2) { - mlsize_t len1, len2, len; + mlsize_t len1, len2; int res; len1 = caml_string_length(s1); |