~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_locking.c

  • Committer: Brian Aker
  • Date: 2008-10-06 05:57:49 UTC
  • Revision ID: brian@tangent.org-20081006055749-svg700gciuqi0zu1
Remove all of uchar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
  pthread_mutex_unlock(&share->intern_lock);
225
225
#if defined(FULL_LOG) || defined(_lint)
226
226
  lock_type|=(int) (flag << 8);         /* Set bit to set if real lock */
227
 
  myisam_log_command(MI_LOG_LOCK,info,(uchar*) &lock_type,sizeof(lock_type),
 
227
  myisam_log_command(MI_LOG_LOCK,info,(unsigned char*) &lock_type,sizeof(lock_type),
228
228
                     error);
229
229
#endif
230
230
  return(error);
449
449
 
450
450
int _mi_mark_file_changed(MI_INFO *info)
451
451
{
452
 
  uchar buff[3];
 
452
  unsigned char buff[3];
453
453
  register MYISAM_SHARE *share=info->s;
454
454
 
455
455
  if (!(share->state.changed & STATE_CHANGED) || ! share->global_changed)
481
481
 
482
482
int _mi_decrement_open_count(MI_INFO *info)
483
483
{
484
 
  uchar buff[2];
 
484
  unsigned char buff[2];
485
485
  register MYISAM_SHARE *share=info->s;
486
486
  int lock_error=0,write_error=0;
487
487
  if (share->global_changed)