summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2018-12-28 11:51:03 +0100
committerAnton Khirnov <anton@khirnov.net>2018-12-28 11:51:03 +0100
commitc0272a4335c154239274ec53e871526616beefa9 (patch)
tree71dd9e3da25eb405e7d98ceaa479604ce330af7b
parent03de59be9b485d977230d2f0948b7c42bc838053 (diff)
mg2d: remove a mistakenly committed hunk.
-rw-r--r--mg2d.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mg2d.c b/mg2d.c
index 692d4c1..7f1ce4e 100644
--- a/mg2d.c
+++ b/mg2d.c
@@ -687,8 +687,8 @@ void mg2d_print_stats(MG2DContext *ctx, const char *prefix)
if (!prefix)
prefix = "";
- mg2di_log(&priv->logger, MG2D_LOG_VERBOSE, "%s%ld solves; %g s total time; %g ms avg per call %g s findmax\n",
- prefix, priv->count_solve, priv->time_solve / 1e6, priv->time_solve / 1e3 / priv->count_solve, priv->time_findmax / 1e6);
+ mg2di_log(&priv->logger, MG2D_LOG_VERBOSE, "%s%ld solves; %g s total time; %g ms avg per call\n",
+ prefix, priv->count_solve, priv->time_solve / 1e6, priv->time_solve / 1e3 / priv->count_solve);
while (level) {
int64_t level_total = level->time_relax + level->time_prolong + level->time_restrict +