~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleslap.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:
245
245
 
246
246
static long int timedif(struct timeval a, struct timeval b)
247
247
{
248
 
  register int us, s;
 
248
  int us, s;
249
249
 
250
250
  us = a.tv_usec - b.tv_usec;
251
251
  us /= 1000;