summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-04-04 00:34:25 +0000
committerIan Lynagh <igloo@earth.li>2007-04-04 00:34:25 +0000
commit85174045bbcc05adb28447d423794d1f087da59e (patch)
tree1c6a9bbb0e836384d71b0841f8614c443903b513 /compat
parentdd605e295e2a7ee92dc0511d81ebef4984eacf1e (diff)
downloadhaskell-85174045bbcc05adb28447d423794d1f087da59e.tar.gz
Fix C/Haskell type mismatches
Diffstat (limited to 'compat')
-rw-r--r--compat/cbits/rawSystem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/cbits/rawSystem.c b/compat/cbits/rawSystem.c
index 00b8c49cc1..917594fd2e 100644
--- a/compat/cbits/rawSystem.c
+++ b/compat/cbits/rawSystem.c
@@ -56,7 +56,7 @@
/* -------------------- WINDOWS VERSION --------------------- */
HsInt
-rawSystem(HsAddr cmd)
+rawSystem(char *cmd)
{
STARTUPINFO sInfo;
PROCESS_INFORMATION pInfo;
@@ -90,7 +90,7 @@ rawSystem(HsAddr cmd)
/* -------------------- UNIX VERSION --------------------- */
HsInt
-rawSystem(HsAddr cmd, HsAddr args)
+rawSystem(char *cmd, char **args)
{
int pid;
int wstat;