From 196a044dd6cf0b7c56448eaeae0491cfb6a3493e Mon Sep 17 00:00:00 2001 From: Gregory A Lundberg Date: Sun, 2 Oct 2016 00:45:19 -0500 Subject: [PATCH] Revert spurious change to whitespace --- src/lua/lgc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua/lgc.cpp b/src/lua/lgc.cpp index ae3421e48937..f791e061cdcd 100644 --- a/src/lua/lgc.cpp +++ b/src/lua/lgc.cpp @@ -1059,7 +1059,7 @@ static lu_mem singlestep (lua_State *L) { g->gcstate = GCSatomic; /* finish mark phase */ g->GCestimate = g->GCmemtrav; /* save what was counted */; work = atomic(L); /* add what was traversed by 'atomic' */ - g->GCestimate += work; /* estimate of total memory traversed */ + g->GCestimate += work; /* estimate of total memory traversed */ sw = entersweep(L); return work + sw * GCSWEEPCOST; }