From: panne Date: Sun, 9 Jul 2000 16:17:10 +0000 (+0000) Subject: [project @ 2000-07-09 16:17:10 by panne] X-Git-Tag: Approximately_9120_patches~4050 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=caea0cb904c1a1248e25afb5585c757e95abb987;hp=7f8d266e66b063c1a7477d80d82aa8f2c4e198e2;p=ghc-hetmet.git [project @ 2000-07-09 16:17:10 by panne] Third attempt by two people trying to get a simple fprintf right again... :-} --- diff --git a/ghc/rts/ProfHeap.c b/ghc/rts/ProfHeap.c index 0f37257..82857f9 100644 --- a/ghc/rts/ProfHeap.c +++ b/ghc/rts/ProfHeap.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: ProfHeap.c,v 1.15 2000/07/08 17:04:17 panne Exp $ + * $Id: ProfHeap.c,v 1.16 2000/07/09 16:17:10 panne Exp $ * * (c) The GHC Team, 1998-2000 * @@ -412,7 +412,7 @@ fprint_ccs(FILE *fp, CostCentreStack *ccs, nat components) } else { fprint_ccs(fp, ccs->prevStack,components-1); - fprintf(fp,"%s/%s",cc->label,ccs->ccsID); + fprintf(fp,"/%s",cc->label); } }