From a675a749e00ef9636d73f334a96e0b3ec34c8fd6 Mon Sep 17 00:00:00 2001 From: arvidn Date: Thu, 18 Feb 2016 20:42:15 -0500 Subject: [PATCH] remove 'full' allocation from client_test --- examples/client_test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/client_test.cpp b/examples/client_test.cpp index 12a00b6de..c376b7e4f 100644 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -1378,7 +1378,6 @@ int main(int argc, char* argv[]) break; case 'a': if (strcmp(arg, "allocate") == 0) allocation_mode = storage_mode_allocate; - else if (strcmp(arg, "full") == 0) allocation_mode = storage_mode_allocate; else if (strcmp(arg, "sparse") == 0) allocation_mode = storage_mode_sparse; break; case 's': save_path = arg; break;