From 0bbc45e634bb05047984da49747c60d919eb48e4 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 6 Sep 2019 12:15:30 -0700 Subject: [PATCH] modules/m_vm_fetch: Fix error in debuglog msg. --- modules/m_vm_fetch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/m_vm_fetch.cc b/modules/m_vm_fetch.cc index 68a9db8db..49c95cbb4 100644 --- a/modules/m_vm_fetch.cc +++ b/modules/m_vm_fetch.cc @@ -167,7 +167,7 @@ try log, "%s auth_events:%zu miss:%zu", loghead(eval), auth_count, - auth_exists - auth_count, + auth_count - auth_exists, }; if(!bool(m::vm::fetch::enable))