~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/default_modify.cc

  • Committer: Nathan Williams
  • Date: 2009-06-30 21:28:16 UTC
  • mto: This revision was merged to the branch mainline in revision 1082.
  • Revision ID: nathanlws@gmail.com-20090630212816-tgxr6w1y9oe9twfy
Fixed a few more system dependent type errors (size_t vs unsigned vs long unsigned).

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
    for the option we want to add.
104
104
  */
105
105
  if (!(file_buffer= (char*) malloc(max(buffer_size + reserve_extended,
106
 
                                        (long unsigned)SIZE_MAX))))
 
106
                                        (size_t)SIZE_MAX))))
107
107
    goto malloc_err;
108
108
 
109
109
  sect_len= strlen(section_name);