summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Frisch <alain@frisch.fr>2013-06-18 10:39:29 +0000
committerAlain Frisch <alain@frisch.fr>2013-06-18 10:39:29 +0000
commitf6890fbacbd53f4d22456d5070a0ab1f59ead92b (patch)
treedf71c463b5d03115f3f56a9040c5463461850a9a
parent58e99bd087a837288e96f6f5d797cc0852669690 (diff)
Remove debug.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13800 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--byterun/win32.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/byterun/win32.c b/byterun/win32.c
index 5bb4fc153..b2fd4b7e9 100644
--- a/byterun/win32.c
+++ b/byterun/win32.c
@@ -511,7 +511,6 @@ int caml_executable_name(char * name, int name_len)
int retcode;
int ret = GetModuleFileName(NULL, name, name_len);
- printf("ret = %d, name = %s\n", ret, name); fflush(stdout);
if (0 == ret || ret >= name_len) return -1;
return 0;
}