~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlbinlog.cc

  • Committer: Monty Taylor
  • Date: 2008-07-15 15:56:11 UTC
  • mto: (77.6.2 glibclient-merge)
  • mto: This revision was merged to the branch mainline in revision 170.
  • Revision ID: mordred@camelot-20080715155611-b7vowr7lr1h0gcvt
Fixed some format strings to use PRIu64 for the uint64_t types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
#define MYSQL_CLIENT
32
32
#undef MYSQL_SERVER
 
33
#include <my_global.h>
33
34
#include "client_priv.h"
34
35
#include <my_time.h>
35
36
/* That one is necessary for defines of OPTION_NO_FOREIGN_KEY_CHECKS etc */
1615
1616
{
1616
1617
  uchar header[BIN_LOG_HEADER_SIZE];
1617
1618
  uchar buf[PROBE_HEADER_LEN];
1618
 
  my_off_t tmp_pos, pos;
 
1619
  uint64_t tmp_pos, pos;
1619
1620
 
1620
1621
  delete glob_description_event;
1621
1622
  if (!(glob_description_event= new Format_description_log_event(3)))
1657
1658
    {
1658
1659
      if (file->error)
1659
1660
      {
1660
 
        error("Could not read entry at offset %lu: "
1661
 
              "Error in log format or read error.", (uint64_t)tmp_pos);
 
1661
        error("Could not read entry at offset %"PRIu64": "
 
1662
              "Error in log format or read error.", tmp_pos);
1662
1663
        return ERROR_STOP;
1663
1664
      }
1664
1665
      /*
1709
1710
          /* EOF can't be hit here normally, so it's a real error */
1710
1711
        {
1711
1712
          error("Could not read a Format_description_log_event event at "
1712
 
                "offset %lu; this could be a log format error or read error.",
1713
 
                (uint64_t)tmp_pos);
 
1713
                "offset %"PRIu64"; this could be a log format error or read error.",
 
1714
                tmp_pos);
1714
1715
          return ERROR_STOP;
1715
1716
        }
1716
1717
        if (opt_base64_output_mode == BASE64_OUTPUT_AUTO
1740
1741
        if (!(ev= Log_event::read_log_event(file, glob_description_event)))
1741
1742
        {
1742
1743
          /* EOF can't be hit here normally, so it's a real error */
1743
 
          error("Could not read a Rotate_log_event event at offset %lu;"
 
1744
          error("Could not read a Rotate_log_event event at offset "
 
1745
                "%"PRIu64";"
1744
1746
                " this could be a log format error or read error.",
1745
 
                (uint64_t)tmp_pos);
 
1747
                tmp_pos);
1746
1748
          return ERROR_STOP;
1747
1749
        }
1748
1750
        delete ev;