From: Wolfgang Bangerth Date: Fri, 27 Sep 2013 12:34:23 +0000 (+0000) Subject: Avoid infinite loop. X-Git-Tag: v8.1.0~711 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f93cb7226d775434dbbc3070b888ae01885b0c6;p=dealii.git Avoid infinite loop. git-svn-id: https://svn.dealii.org/trunk@30973 0785d39b-7218-0410-832d-ea1e28bc413d --- 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;