~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Brian Aker
  • Date: 2008-08-05 04:10:42 UTC
  • mfrom: (261.2.8 codestyle)
  • mto: This revision was merged to the branch mainline in revision 263.
  • Revision ID: brian@tangent.org-20080805041042-1l4893r3bwy2lxz2
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
                          bool print_error, uint idx)
59
59
{
60
60
  empty_record(table);
61
 
  memset((char*) info, 0, sizeof(*info));
 
61
  memset(info, 0, sizeof(*info));
62
62
  info->table= table;
63
63
  info->file=  table->file;
64
64
  info->record= table->record[0];
146
146
{
147
147
  IO_CACHE *tempfile;
148
148
 
149
 
  memset((char*) info, 0, sizeof(*info));
 
149
  memset(info, 0, sizeof(*info));
150
150
  info->thd=thd;
151
151
  info->table=table;
152
152
  info->file= table->file;