X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=yforth.h;h=00d77bee23df1c9ae75c40e34d3d2e994b2f3787;hb=4041c3ec793c8a48a912274613fee4a64cc4fc64;hp=abdef546c1faaf2584f4aaacc4797d1e78037b60;hpb=ef65b7aa8aa9801818dfe1de1f4a434719cc62e1;p=debian%2Fyforth diff --git a/yforth.h b/yforth.h index abdef54..00d77be 100644 --- 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