~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/drizzled.cc

  • Committer: Patrick Galbraith
  • Date: 2008-07-16 18:48:24 UTC
  • mto: (77.3.28 glibclient)
  • mto: This revision was merged to the branch mainline in revision 176.
  • Revision ID: patg@ishvara-20080716184824-nyd9po8rwk00l2qu
Dar, I forgot to commit this earlier.

* Removed my_sprintf from the files below
* Fixed some small issues that cause compile to fail (pedantic picky-ousity)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4078
4078
  {
4079
4079
    var->type= SHOW_CHAR;
4080
4080
    var->value= buff;
4081
 
    my_sprintf(buff, (buff, "%.3f",active_mi->heartbeat_period));
 
4081
    sprintf(buff, "%.3f",active_mi->heartbeat_period);
4082
4082
  }
4083
4083
  else
4084
4084
    var->type= SHOW_UNDEF;