~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Stewart Smith
  • Date: 2009-05-17 07:44:37 UTC
  • mto: (991.1.7 for-brian)
  • mto: This revision was merged to the branch mainline in revision 1029.
  • Revision ID: stewart@flamingspork.com-20090517074437-8lcfd00ftt4oqb75
fix drizzledump dying on connection error (int as %s arg)

Show diffs side-by-side

added added

removed removed

Lines of Context:
857
857
    drizzle_result_free(res);
858
858
  }
859
859
  else
860
 
    maybe_die(EX_DRIZZLEERR, _("Got error: %s %s"), ret, when);
 
860
    maybe_die(EX_DRIZZLEERR, _("Got error: %d %s"), ret, when);
861
861
 
862
862
  return;
863
863
}