~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/gen_lex_hash.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:
497
497
  if (function){\n\
498
498
    if (len>sql_functions_max_len) return 0;\n\
499
499
    hash_map= sql_functions_map;\n\
500
 
    register uint32 cur_struct= uint4korr(hash_map+((len-1)*4));\n\
 
500
    register uint32_t cur_struct= uint4korr(hash_map+((len-1)*4));\n\
501
501
\n\
502
502
    for (;;){\n\
503
503
      register uchar first_char= (uchar)cur_struct;\n\
531
531
  }else{\n\
532
532
    if (len>symbols_max_len) return 0;\n\
533
533
    hash_map= symbols_map;\n\
534
 
    register uint32 cur_struct= uint4korr(hash_map+((len-1)*4));\n\
 
534
    register uint32_t cur_struct= uint4korr(hash_map+((len-1)*4));\n\
535
535
\n\
536
536
    for (;;){\n\
537
537
      register uchar first_char= (uchar)cur_struct;\n\