diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-03-16 16:03:22 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-03-16 16:03:22 +0000 |
commit | c137ecd7e6e83d0f9c39b15ccdb9f2355f243c91 (patch) | |
tree | 4cdfcd2cb87458bbf404902e2646b16e9e1baa0c /ghc | |
parent | b551e40cbabc0eb30df13771d7d55c6b6f4e3ab0 (diff) | |
download | haskell-c137ecd7e6e83d0f9c39b15ccdb9f2355f243c91.tar.gz |
remove accidental extra in previous patch
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/rts/Schedule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/rts/Schedule.c b/ghc/rts/Schedule.c index 0ff9bbe1a0..bbc6a8b5a8 100644 --- a/ghc/rts/Schedule.c +++ b/ghc/rts/Schedule.c @@ -4498,7 +4498,7 @@ sched_belch(char *s, ...) va_list ap; va_start(ap,s); #ifdef THREADED_RTS - debugBelch("sched (task %p, pid %d): ", (void *)(unsigned long)(unsigned int)osThreadId(), getpid()); + debugBelch("sched (task %p): ", (void *)(unsigned long)(unsigned int)osThreadId()); #elif defined(PARALLEL_HASKELL) debugBelch("== "); #else |