diff options
author | Ian Lynagh <igloo@earth.li> | 2007-04-03 19:53:24 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-04-03 19:53:24 +0000 |
commit | 150cc9e2e4657cc58bd7ec4c15e5cb72f2e1c0f6 (patch) | |
tree | 617f13ae77fa27d366c3fad92965583dcdf42896 /rts/posix | |
parent | f2b02ce821f793bd1ccc23f2bcbef8efc82dd38e (diff) | |
download | haskell-150cc9e2e4657cc58bd7ec4c15e5cb72f2e1c0f6.tar.gz |
Fix C/Haskell type mismatches
Diffstat (limited to 'rts/posix')
-rw-r--r-- | rts/posix/Signals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/posix/Signals.c b/rts/posix/Signals.c index 4ae22cd143..abbb97ae68 100644 --- a/rts/posix/Signals.c +++ b/rts/posix/Signals.c @@ -41,7 +41,7 @@ * to POSIX.1 to control whether or not to include SA_NOCLDSTOP when * installing a SIGCHLD handler. */ -StgInt nocldstop = 0; +HsInt nocldstop = 0; /* ----------------------------------------------------------------------------- * The table of signal handlers |