diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2005-09-22 14:21:50 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2005-09-22 14:21:50 +0000 |
commit | 3de54dec267abf845ca32bd1f6026834cc04d853 (patch) | |
tree | daa34de1fd38e86c2dd0c67896c3c5748511fe1c /byterun/roots.c | |
parent | 11524e2578b62fa30620121873aa372b180c0a74 (diff) | |
download | ocaml-3de54dec267abf845ca32bd1f6026834cc04d853.tar.gz |
Remplacement long/unsigned long par intnat/uintnat
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7064 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/roots.c')
-rw-r--r-- | byterun/roots.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/roots.c b/byterun/roots.c index 83c59dd88c..2ff8762165 100644 --- a/byterun/roots.c +++ b/byterun/roots.c @@ -38,7 +38,7 @@ void caml_oldify_local_roots (void) register value * sp; struct global_root * gr; struct caml__roots_block *lr; - long i, j; + intnat i, j; /* The stack */ for (sp = caml_extern_sp; sp < caml_stack_high; sp++) { |