~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqldump.c

  • Committer: Brian Aker
  • Date: 2008-07-13 22:45:08 UTC
  • Revision ID: brian@tangent.org-20080713224508-hb20z4okblotb39a
longlong replacement

Show diffs side-by-side

added added

removed removed

Lines of Context:
359
359
  {"max_allowed_packet", OPT_MAX_ALLOWED_PACKET, "",
360
360
    (char**) &opt_max_allowed_packet, (char**) &opt_max_allowed_packet, 0,
361
361
    GET_ULONG, REQUIRED_ARG, 24*1024*1024, 4096,
362
 
   (longlong) 2L*1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
 
362
   (int64_t) 2L*1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
363
363
  {"net_buffer_length", OPT_NET_BUFFER_LENGTH, "",
364
364
    (char**) &opt_net_buffer_length, (char**) &opt_net_buffer_length, 0,
365
365
    GET_ULONG, REQUIRED_ARG, 1024*1024L-1025, 4096, 16*1024L*1024L,
3180
3180
        *err_len= var_len;
3181
3181
      }
3182
3182
      else
3183
 
        found|= ((longlong) 1 << (find - 1));
 
3183
        found|= ((int64_t) 1 << (find - 1));
3184
3184
      if (pos == end)
3185
3185
        break;
3186
3186
      start= pos + 1;