summaryrefslogtreecommitdiff
path: root/apps/plugins/bench_scaler.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/bench_scaler.c')
-rw-r--r--apps/plugins/bench_scaler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/bench_scaler.c b/apps/plugins/bench_scaler.c
index c24807dad6..246271dcc8 100644
--- a/apps/plugins/bench_scaler.c
+++ b/apps/plugins/bench_scaler.c
@@ -49,8 +49,8 @@ static void output_row_null(uint32_t row, void * row_in,
49#else 49#else
50 uint32_t *lim = in + ctx->bm->width; 50 uint32_t *lim = in + ctx->bm->width;
51#endif 51#endif
52 for (; in < lim; in++) 52 while (in < lim)
53 output = SC_MUL(*in + ctx->round, ctx->divisor); 53 output = SC_OUT(*in++, ctx);
54 return; 54 return;
55} 55}
56 56