From 2c03199e1b47b3464e8abc08ae81357abf1f48b4 Mon Sep 17 00:00:00 2001 From: kelson42 Date: Wed, 2 Apr 2014 17:11:40 +0200 Subject: [PATCH] + Fix compilation warning --- src/installer/kiwix-install.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/kiwix-install.cpp b/src/installer/kiwix-install.cpp index 2f5a6ff..06f5a1e 100644 --- a/src/installer/kiwix-install.cpp +++ b/src/installer/kiwix-install.cpp @@ -156,7 +156,7 @@ int main(int argc, char **argv) { string indexPath = computeAbsolutePath(dataIndexPath, indexFilename); if (buildIndexFlag && !fileExists(indexPath)) { if (verboseFlag) { std::cout << "Start indexing the ZIM file..." << std::endl; } - kiwix::Indexer *indexer = NULL; + kiwix::XapianIndexer *indexer = NULL; try { indexer = new kiwix::XapianIndexer(); } catch (...) {