Imported Debian patch 0.1beta-15
[debian/yforth] / yforth.h
index abdef546c1faaf2584f4aaacc4797d1e78037b60..00d77bee23df1c9ae75c40e34d3d2e994b2f3787 100644 (file)
--- a/yforth.h
+++ b/yforth.h
@@ -126,8 +126,8 @@ void put_dcell(Cell *ptr, DCell d);
 #              define GET_DCELL(ptr)           get_dcell((Cell *) ptr)
 #              define PUT_DCELL(ptr, d)        put_dcell((Cell *) ptr, (DCell) d)
 #      else
-#              define GET_DCELL(ptr)           *((DCell *) ptr)
-#              define PUT_DCELL(ptr, d)        *((DCell *) ptr) = d
+#              define GET_DCELL(ptr)           *((DCell *) (ptr))
+#              define PUT_DCELL(ptr, d)        *((DCell *) (ptr)) = d
 #      endif
 #else
 #      ifdef LITTLE_ENDIAN