~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/myisamchk.c

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
static const char *type_names[]=
50
50
{ "impossible","char","binary", "short", "long", "float",
51
51
  "double","number","unsigned short",
52
 
  "unsigned long","longlong","ulonglong","int24",
 
52
  "unsigned long","longlong","uint64_t","int24",
53
53
  "uint24","int8","varchar", "varbin","?",
54
54
  "?"};
55
55
 
563
563
      check_param.testflag|= T_FAST;
564
564
    break;
565
565
  case 'k':
566
 
    check_param.keys_in_use= (ulonglong) strtoll(argument, NULL, 10);
 
566
    check_param.keys_in_use= (uint64_t) strtoll(argument, NULL, 10);
567
567
    break;
568
568
  case 'm':
569
569
    if (argument == disabled_my_option)
964
964
    {
965
965
      if (param->testflag & T_REP_ANY)
966
966
      {
967
 
        ulonglong tmp=share->state.key_map;
 
967
        uint64_t tmp=share->state.key_map;
968
968
        mi_copy_keys_active(share->state.key_map, share->base.keys,
969
969
                            param->keys_in_use);
970
970
        if (tmp != share->state.key_map)