diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2015-06-01 11:37:01 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2015-06-01 11:38:55 -0700 |
commit | f82e866504259c674d6fb3f66e67ae943a688b3f (patch) | |
tree | 5483c73f45035188e1a1acec732c5736fb0a5473 /rts/sm | |
parent | a27fb46ff1ea46a45e0084c3db92a24475e3bab5 (diff) | |
download | haskell-f82e866504259c674d6fb3f66e67ae943a688b3f.tar.gz |
Newline after type of allocate().
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Diffstat (limited to 'rts/sm')
-rw-r--r-- | rts/sm/Storage.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rts/sm/Storage.c b/rts/sm/Storage.c index 50926b70b3..85884fa12d 100644 --- a/rts/sm/Storage.c +++ b/rts/sm/Storage.c @@ -738,7 +738,8 @@ move_STACK (StgStack *src, StgStack *dest) that operation fails, then the whole process will be killed. -------------------------------------------------------------------------- */ -StgPtr allocate (Capability *cap, W_ n) +StgPtr +allocate (Capability *cap, W_ n) { bdescr *bd; StgPtr p; |