Implement syslog.
[bertos.git] / bertos / dt / dnotifier.h
index 9560d3c8d37aecd33d8518093fe5d200be1fe345..992a4ce144b6a2e44725ca8fab732a463230f560 100644 (file)
@@ -31,8 +31,7 @@
  *
  * \brief Notifier obj (interface).
  *
- * \version $Id$
- * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Bernie Innocenti <bernie@codewiz.org>
  * \author Francesco Sacchi <batt@develer.com>
  */
 
@@ -42,7 +41,7 @@
 #include <cfg/debug.h>
 
 #include <dt/dtag.h>
-#include <mware/list.h>
+#include <struct/list.h>
 
 //Fwd declaretion.
 struct DNotifier;
@@ -99,7 +98,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);