Update db_bench_tool.cc (#1073)

* Update db_bench_tool.cc

I fixed the wrong letters, LevelDB -> rocksDB, because I thought of LevelDB as the wrong presentation.

the following show my fix :

fprintf(stderr, "LevelDB:    version %d.%d\n",
            kMajorVersion, kMinorVersion);

----------------->
fprintf(stderr, "rocksDB:    version %d.%d\n",
            kMajorVersion, kMinorVersion);

* Update db_bench_tool.cc

* Update db_bench_tool.cc
This commit is contained in:
Hyunyoung Lee 2016-04-12 14:05:09 -07:00 committed by Igor Canadi
parent 63cf15bb9f
commit 71303e04e7
1 changed files with 1 additions and 1 deletions

View File

@ -1714,7 +1714,7 @@ class Benchmark {
#endif
void PrintEnvironment() {
fprintf(stderr, "LevelDB: version %d.%d\n",
fprintf(stderr, "RocksDB: version %d.%d\n",
kMajorVersion, kMinorVersion);
#if defined(__linux)