Commit 65c827eb authored by Paul Asmuth's avatar Paul Asmuth
Browse files

don't use PRIu64 since some compilers seem to not like it

parent e83b26a9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -60,10 +60,10 @@ Metric::Metric(
  if (env()->verbose()) {
    env()->logger()->printf(
        "DEBUG",
        "Reopening metric: '%s' with %i table(s), generation: %" PRIu64,
        "Reopening metric: '%s' with %i table(s), generation: %llu",
        key.c_str(),
        (int) generations.size(),
        head_table->generation());
        (long long unsigned) head_table->generation());
  }

  std::shared_ptr<MetricSnapshot> snapshot(new MetricSnapshot());
+2 −2
Original line number Diff line number Diff line
@@ -80,9 +80,9 @@ std::unique_ptr<TableRef> TableRef::createTable(
  if (env()->verbose()) {
    env()->logger()->printf(
        "DEBUG",
        "Creating new sstable for metric: '%s', generation: %" PRIu64,
        "Creating new sstable for metric: '%s', generation: %llu",
        metric_key.c_str(),
        generation);
        (long long unsigned) generation);
  }

  // build header