~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/set_var.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:
1528
1528
  }
1529
1529
  case SHOW_MY_BOOL:
1530
1530
  {
1531
 
    int32 value;
 
1531
    int32_t value;
1532
1532
    pthread_mutex_lock(&LOCK_global_system_variables);
1533
1533
    value= *(bool*) value_ptr(thd, var_type, base);
1534
1534
    pthread_mutex_unlock(&LOCK_global_system_variables);