~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Olaf van der Spek
  • Date: 2011-02-21 21:45:55 UTC
  • mto: (2190.1.2 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2191.
  • Revision ID: olafvdspek@gmail.com-20110221214555-ryzxlqrw5tm1ypp1
Remove register keyword

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
 
198
198
/* Deallocate temporary blob storage */
199
199
 
200
 
void free_blobs(register Table *table)
 
200
void free_blobs(Table *table)
201
201
{
202
202
  uint32_t *ptr, *end;
203
203
  for (ptr= table->getBlobField(), end=ptr + table->sizeBlobFields();
239
239
 
240
240
        /* Check that the integer is in the internal */
241
241
 
242
 
int set_zone(register int nr, int min_zone, int max_zone)
 
242
int set_zone(int nr, int min_zone, int max_zone)
243
243
{
244
244
  if (nr<=min_zone)
245
245
    return (min_zone);