~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlcheck.c

  • 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:
637
637
  if (opt_all_in_1)
638
638
  {
639
639
    /* No backticks here as we added them before */
640
 
    query_length= my_sprintf(query,
641
 
                             (query, "%s TABLE %s %s", op, tables, options));
 
640
    query_length= sprintf(query, "%s TABLE %s %s", op, tables, options);
642
641
  }
643
642
  else
644
643
  {