~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/thr_malloc.cc

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
/* Mallocs for used in threads */
18
18
 
19
19
#include <drizzled/server_includes.h>
20
 
#include <drizzled/error.h>
 
20
#include <drizzled/drizzled_error_messages.h>
21
21
 
22
22
extern "C" {
23
23
  void sql_alloc_error_handler(void)
24
24
  {
25
 
    sql_print_error("%s",ER(ER_OUT_OF_RESOURCES));
 
25
    sql_print_error(ER(ER_OUT_OF_RESOURCES));
26
26
  }
27
27
}
28
28