diff --git a/others/lru_cache.cpp b/others/lru_cache.cpp index 04078f9b0..f9cd3caec 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -263,6 +263,6 @@ int main() { cache.display(); std::cout << "Hits: " << cache.getHits() - << " Miss: " << cache.getPageFault(); + << " Miss: " << cache.getPageFault() << std::endl; return 0; }