diff options
author | Pierre Weis <Pierre.Weis@inria.fr> | 2010-02-09 14:48:28 +0000 |
---|---|---|
committer | Pierre Weis <Pierre.Weis@inria.fr> | 2010-02-09 14:48:28 +0000 |
commit | 4d97eaa88adbe286df8558d712e52d54281eeb2f (patch) | |
tree | 931ba70015651656aaa8a3d0575d1f6b1645fd6e | |
parent | 2faa92d765778a56dbb12d3989b4ea64437f332a (diff) |
Incorporating OBSD patches.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9625 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | tools/checkstack.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/checkstack.c b/tools/checkstack.c index 5250e29d6..fc760945f 100644 --- a/tools/checkstack.c +++ b/tools/checkstack.c @@ -35,7 +35,8 @@ int main(int argc, char ** argv) "Under sh, bash, zsh: ulimit -s %lu\n" "Under csh, tcsh: limit stacksize %lu\n\n", (unsigned long) (limit.rlim_cur / 1024), - MINSTACKBYTES / 1024, MINSTACKBYTES / 1024); + (unsigned long) (MINSTACKBYTES / 1024), + (unsigned long) (MINSTACKBYTES / 1024)); exit (3); } exit (0); |