~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_error.cc

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
    protocol->prepare_for_resend();
225
225
    protocol->store(warning_level_names[err->level].str,
226
226
                    warning_level_names[err->level].length, system_charset_info);
227
 
    protocol->store((uint32) err->code);
 
227
    protocol->store((uint32_t) err->code);
228
228
    protocol->store(err->msg, strlen(err->msg), system_charset_info);
229
229
    if (protocol->write())
230
230
      return(true);