From 4f45d852d881f7f3eb0c7fab5206e7330f26f4cf Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sun, 10 Feb 2013 01:36:13 +1300 Subject: [PATCH] Typo in rev.12661 --- src/cache_cf.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 7aa6610629..d5b7ab5880 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -291,7 +291,7 @@ update_maxobjsize(void) // Ensure that we do not discard objects which could be stored only in memory. // It is governed by maximum_object_size_in_memory (for now) // TODO: update this to check each in-memory location (SMP and local memory limits differ) - if (ms < statc_cast(Config.Store.maxInMemObjSize)) + if (ms < static_cast(Config.Store.maxInMemObjSize)) ms = Config.Store.maxInMemObjSize; store_maxobjsize = ms; -- 2.47.2