~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to client/drizzledump_data.cc

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
345
345
  {
346
346
    /* Would be nice if std::hex liked uint8_t, ah well */
347
347
    output << std::uppercase << std::hex << std::setw(2) << std::setfill('0') << (unsigned short)(*from);
348
 
    (void) *from++;
 
348
    *from++;
349
349
    from_size--;
350
350
  }
351
351
 
376
376
       }
377
377
    }
378
378
    output.push_back(*from);
379
 
    (void) *from++;
 
379
    *from++;
380
380
    from_size--;
381
381
  }
382
382