~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_extra.c

Removed/replaced DBUG

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
int heap_extra(register HP_INFO *info, enum ha_extra_function function)
30
30
{
 
31
  DBUG_ENTER("heap_extra");
 
32
 
31
33
  switch (function) {
32
34
  case HA_EXTRA_RESET_STATE:
33
35
    heap_reset(info);
44
46
  default:
45
47
    break;
46
48
  }
47
 
  return(0);
 
49
  DBUG_RETURN(0);
48
50
} /* heap_extra */
49
51
 
50
52