Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Dec 2015 17:51:42 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r403131 - head/databases/rocksdb/files
Message-ID:  <201512061751.tB6HpgA1073719@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Dec  6 17:51:42 2015
New Revision: 403131
URL: https://svnweb.freebsd.org/changeset/ports/403131

Log:
  - Fix build on i386

Added:
  head/databases/rocksdb/files/patch-tools-db_stress.cc   (contents, props changed)

Added: head/databases/rocksdb/files/patch-tools-db_stress.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/rocksdb/files/patch-tools-db_stress.cc	Sun Dec  6 17:51:42 2015	(r403131)
@@ -0,0 +1,11 @@
+--- tools/db_stress.cc.orig	2015-11-17 21:52:04 UTC
++++ tools/db_stress.cc
+@@ -590,7 +590,7 @@ class Stats {
+             "", bytes_mb, rate, (100*writes_)/done_, done_);
+     fprintf(stdout, "%-12s: Wrote %ld times\n", "", writes_);
+     fprintf(stdout, "%-12s: Deleted %ld times\n", "", deletes_);
+-    fprintf(stdout, "%-12s: Single deleted %ld times\n", "", single_deletes_);
++    fprintf(stdout, "%-12s: Single deleted %zu times\n", "", single_deletes_);
+     fprintf(stdout, "%-12s: %ld read and %ld found the key\n", "",
+             gets_, founds_);
+     fprintf(stdout, "%-12s: Prefix scanned %ld times\n", "", prefixes_);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512061751.tB6HpgA1073719>