From 7f93cb7226d775434dbbc3070b888ae01885b0c6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 27 Sep 2013 12:34:23 +0000 Subject: [PATCH] Avoid infinite loop. git-svn-id: https://svn.dealii.org/trunk@30973 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-42/step-42.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/examples/step-42/step-42.cc b/deal.II/examples/step-42/step-42.cc index e226ffd28c..5496cb266b 100644 --- a/deal.II/examples/step-42/step-42.cc +++ b/deal.II/examples/step-42/step-42.cc @@ -189,7 +189,7 @@ namespace Step42 H(0, 1) = yy; H(0, 2) = xx * yy; H(0, 3) = 1.0; - b(0) = get_value(ix, iy); + b(0) = get_pixel_value(ix, iy); xx = (ix + 1) * hx; yy = iy * hy; -- 2.39.5