~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg.cc

  • Committer: Lee
  • Date: 2008-12-30 20:30:32 UTC
  • mfrom: (755 testable)
  • mto: (758.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 759.
  • Revision ID: lbieber@lbieber-desktop-20081230203032-efgw9i13f37632qz
merge with latest from the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
  return false;
122
122
}
123
123
 
124
 
bool errmsg_vprintf (Session *session, int priority, const char *format, va_list ap)
 
124
bool errmsg_vprintf (Session *session, int priority, char const *format, va_list ap)
125
125
{
126
126
  bool foreach_rv;
127
127
  errmsg_parms_t parms;
150
150
  return foreach_rv;
151
151
}
152
152
 
153
 
bool errmsg_printf (Session *session, int priority, const char *format, ...)
 
153
bool errmsg_printf (Session *session, int priority, char const *format, ...)
154
154
{
155
155
  bool rv;
156
156
  va_list args;
159
159
  va_end(args);
160
160
  return rv;
161
161
}
 
162