~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/logging.cc

  • Committer: Brian Aker
  • Date: 2009-01-28 19:37:25 UTC
  • mfrom: (779.3.11 devel)
  • Revision ID: brian@tangent.org-20090128193725-pz7g7dnp2dx0863e
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
}
74
74
 
75
75
/* This gets called by plugin_foreach once for each loaded logging plugin */
76
 
static bool logging_pre_iterate (Session *session, plugin_ref plugin,
77
 
                                 void *p __attribute__ ((__unused__)))
 
76
static bool logging_pre_iterate (Session *session, plugin_ref plugin, void *)
78
77
{
79
78
  logging_t *l= plugin_data(plugin, logging_t *);
80
79
 
107
106
}
108
107
 
109
108
/* This gets called by plugin_foreach once for each loaded logging plugin */
110
 
static bool logging_post_iterate (Session *session, plugin_ref plugin,
111
 
                                  void *p __attribute__ ((__unused__)))
 
109
static bool logging_post_iterate (Session *session, plugin_ref plugin, void *)
112
110
{
113
111
  logging_t *l= plugin_data(plugin, logging_t *);
114
112