Skip to content
Snippets Groups Projects
Commit 01630909 authored by sof's avatar sof
Browse files

[project @ 1997-11-24 20:56:46 by sof]

Print out module name on entering unregistered CCs
parent b11847c3
No related merge requests found
......@@ -415,7 +415,7 @@ We don't want to attribute costs to an unregistered cost-centre:
do { /* beware of cc name-capture */ \
CostCentre c_c = (CostCentre) (cc); \
if (c_c->registered == NOT_REGISTERED) { \
fprintf(stderr,"Entering unregistered CC: %s\n",c_c->label); \
fprintf(stderr,"Entering unregistered CC: %s %s\n",c_c->module, c_c->label); \
/* unsafe c-call, BTW */ \
} \
if ( (chk_not_overhead) && c_c == STATIC_CC_REF(CC_OVERHEAD) ) { \
......
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