~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

  • Committer: Tim Penhey
  • Date: 2010-01-30 22:28:08 UTC
  • mto: (1271.7.13 errors-in-hash-map)
  • mto: This revision was merged to the branch mainline in revision 1348.
  • Revision ID: tim@penhey.net-20100130222808-y0suqixvt8f572if
Put the gettext macro back in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
  {
129
129
    format= get_error_map().find(nr);
130
130
    va_start(args,MyFlags);
131
 
    (void) vsnprintf (ebuff, sizeof(ebuff), format.c_str(), args);
 
131
    (void) vsnprintf (ebuff, sizeof(ebuff), _(format.c_str()), args);
132
132
    va_end(args);
133
133
  }
134
134
  catch (ErrorStringNotFound const& e)