From 7d7882d05d70560c3aa9e6c6fad48bd323ff2a82 Mon Sep 17 00:00:00 2001 From: batt Date: Wed, 2 Sep 2009 18:06:08 +0000 Subject: [PATCH] Fix warning on architectures with longer integers. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2870 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/dt/dnotifier.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bertos/dt/dnotifier.h b/bertos/dt/dnotifier.h index 3822df59..4b4ef1bf 100644 --- a/bertos/dt/dnotifier.h +++ b/bertos/dt/dnotifier.h @@ -99,7 +99,7 @@ typedef struct DFilter } DFilter; /// Type for filter-mask checking -typedef uint16_t dfilter_mask_t; +typedef unsigned int dfilter_mask_t; /// Filter init void filter_init(DFilter *f, const DFilterMap *map, bool masked, DNotifier *source, DNotifier *target); -- 2.25.1