~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/thr_malloc.cc

  • Committer: Monty Taylor
  • Date: 2008-08-04 19:45:27 UTC
  • mto: (261.2.2 codestyle)
  • mto: This revision was merged to the branch mainline in revision 262.
  • Revision ID: monty@inaugust.com-20080804194527-gmcepj2kyqxwh51s
Made the ER() macro always gettext the return value.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
extern "C" {
24
24
  void sql_alloc_error_handler(void)
25
25
  {
26
 
    sql_print_error(_(ER(ER_OUT_OF_RESOURCES)));
 
26
    sql_print_error(ER(ER_OUT_OF_RESOURCES));
27
27
  }
28
28
}
29
29