diff options
Diffstat (limited to 'rts/Printer.c')
-rw-r--r-- | rts/Printer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Printer.c b/rts/Printer.c index 7364edd37f..b33d238476 100644 --- a/rts/Printer.c +++ b/rts/Printer.c @@ -1164,7 +1164,7 @@ void prettyPrintClosure_ (StgClosure *obj) con_info = get_con_itbl (obj); /* obtain the name of the constructor */ - descriptor = con_info->con_desc; + descriptor = GET_CON_DESC(con_info); debugBelch ("(%s", descriptor); |