[Yt-svn] yt-commit r1710 - trunk/yt/raven

mturk at wrangler.dreamhost.com mturk at wrangler.dreamhost.com
Thu Apr 29 12:11:51 PDT 2010


Author: mturk
Date: Thu Apr 29 12:11:51 2010
New Revision: 1710
URL: http://yt.enzotools.org/changeset/1710

Log:
Missed fixing this syntax error when fixing the hg errors



Modified:
   trunk/yt/raven/_MPL.c

Modified: trunk/yt/raven/_MPL.c
==============================================================================
--- trunk/yt/raven/_MPL.c	(original)
+++ trunk/yt/raven/_MPL.c	Thu Apr 29 12:11:51 2010
@@ -178,7 +178,7 @@
             if (overlap1 < 0.0 || overlap2 < 0.0) continue;
             if (antialias == 1)
               *(npy_float64*) PyArray_GETPTR2(my_array, j, i) +=
-                    (dsp*overlap1)*overlap2);
+                    (dsp*overlap1)*overlap2;
             else *(npy_float64*) PyArray_GETPTR2(my_array, j, i) = dsp;
           }
         }



More information about the yt-svn mailing list