From 716aaae7993c028577aaa97737d1f4f84f1fa15f Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Wed, 17 Jun 2009 20:27:57 +0200 Subject: [PATCH] Fixed type mismatch by conversion of formatted string to base-string (D Statyvka) --- src/c/unixsys.d | 1 + 1 file changed, 1 insertion(+) diff --git a/src/c/unixsys.d b/src/c/unixsys.d index c8ef9de3f..6c03c625d 100644 --- a/src/c/unixsys.d +++ b/src/c/unixsys.d @@ -100,6 +100,7 @@ si_make_pipe() cl_format(4, Cnil, make_simple_base_string("~S~{ ~S~}"), command, argv); + command = si_copy_to_simple_base_string(command); command = ecl_null_terminated_base_string(command); attr.nLength = sizeof(SECURITY_ATTRIBUTES);