summaryrefslogtreecommitdiff
path: root/rts/Printer.c
diff options
context:
space:
mode:
authorSiddhanathan Shanmugam <siddhanathan@gmail.com>2015-09-11 16:10:41 -0500
committerAustin Seipp <austin@well-typed.com>2015-09-11 18:33:32 -0500
commit7ad4b3c1419fefbb01fd4643f374150abd1d11e2 (patch)
tree46fed56f87cfd2b32ce5ec2537b04be95cbbda23 /rts/Printer.c
parent4275028c744ef8ee6bbc26c3a301ef2e3e8708a0 (diff)
downloadhaskell-7ad4b3c1419fefbb01fd4643f374150abd1d11e2.tar.gz
s/StgArrWords/StgArrBytes/
Rename StgArrWords to StgArrBytes (see Trac #8552) Reviewed By: austin Differential Revision: https://phabricator.haskell.org/D1233 GHC Trac Issues: #8552
Diffstat (limited to 'rts/Printer.c')
-rw-r--r--rts/Printer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Printer.c b/rts/Printer.c
index 2396707aae..637cd9a861 100644
--- a/rts/Printer.c
+++ b/rts/Printer.c
@@ -297,8 +297,8 @@ printClosure( StgClosure *obj )
{
StgWord i;
debugBelch("ARR_WORDS(\"");
- for (i=0; i<arr_words_words((StgArrWords *)obj); i++)
- debugBelch("%" FMT_Word, (W_)((StgArrWords *)obj)->payload[i]);
+ for (i=0; i<arr_words_words((StgArrBytes *)obj); i++)
+ debugBelch("%" FMT_Word, (W_)((StgArrBytes *)obj)->payload[i]);
debugBelch("\")\n");
break;
}