~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_error.c

  • 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:
106
106
      ...       variable list
107
107
*/
108
108
 
109
 
void my_printf_error(uint error, const char *format, myf MyFlags, ...)
 
109
void my_printf_error(uint32_t error, const char *format, myf MyFlags, ...)
110
110
{
111
111
  va_list args;
112
112
  char ebuff[ERRMSGSIZE+20];
128
128
      MyFlags   Flags
129
129
*/
130
130
 
131
 
void my_message(uint error, const char *str, register myf MyFlags)
 
131
void my_message(uint32_t error, const char *str, register myf MyFlags)
132
132
{
133
133
  (*error_handler_hook)(error, str, MyFlags);
134
134
}