From 5b2d734bc39d6ea06a433f2c0c221b2fa099f56f Mon Sep 17 00:00:00 2001 From: hadaq Date: Wed, 16 Oct 2002 07:32:31 +0000 Subject: [PATCH] BUGFIX -- mm --- hadaq/subevt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hadaq/subevt.h b/hadaq/subevt.h index ee2da40..d012561 100644 --- a/hadaq/subevt.h +++ b/hadaq/subevt.h @@ -99,11 +99,11 @@ static void SubEvt_setId(void *my, uint32_t id) SubEvt_setHdrValue(my, SubEvtIdx_id, id); } -static int SubEvt_setDataError(const void *my) { +static int SubEvt_setDataError(void *my) { SubEvt_setId(my, SubEvt_id(my) | 0x80000000UL); } -static int SubEvt_clrDataError(const void *my) { +static int SubEvt_clrDataError(void *my) { SubEvt_setId(my, SubEvt_id(my) & ~0x80000000UL); } -- 2.43.0