diff options
author | Ian Lynagh <igloo@earth.li> | 2007-04-04 00:34:25 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-04-04 00:34:25 +0000 |
commit | 85174045bbcc05adb28447d423794d1f087da59e (patch) | |
tree | 1c6a9bbb0e836384d71b0841f8614c443903b513 /compat | |
parent | dd605e295e2a7ee92dc0511d81ebef4984eacf1e (diff) | |
download | haskell-85174045bbcc05adb28447d423794d1f087da59e.tar.gz |
Fix C/Haskell type mismatches
Diffstat (limited to 'compat')
-rw-r--r-- | compat/cbits/rawSystem.c | 4 |
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; |