Skip to content
Snippets Groups Projects
Commit 46ed752a authored by sven.panne@aedion.de's avatar sven.panne@aedion.de
Browse files

[project @ 2000-07-08 17:04:17 by panne]

Synch format string with actual args
parent 7bb06950
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: ProfHeap.c,v 1.14 2000/06/12 16:01:02 simonmar Exp $
* $Id: ProfHeap.c,v 1.15 2000/07/08 17:04:17 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",cc->label,ccs->ccsID);
fprintf(fp,"%s/%s",cc->label,ccs->ccsID);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment