summaryrefslogtreecommitdiffstats
path: root/byterun/str.c
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2004-05-17 17:10:00 +0000
committerDamien Doligez <damien.doligez-inria.fr>2004-05-17 17:10:00 +0000
commitdb3745919bb07ffcc61c0b04dfd959af4503523b (patch)
treef6593c355ac0be6daa8a1d1d99548a747300db5f /byterun/str.c
parent93ff0675a75f35c0ddc91da0ff7383550533def2 (diff)
suppression des warnings "unused variable" de gcc
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6299 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/str.c')
-rw-r--r--byterun/str.c2
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);