From 014abe3f46a57dd768d384b29aa735b581ec5c0f Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 29 Nov 2008 18:15:36 +0000 Subject: [PATCH] Add FAR to pointer git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1353 42af7a65-404d-4744-a932-0658087f49c3 --- include/signal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/signal.h b/include/signal.h index ee3e7d6de3..7920db5eb6 100644 --- a/include/signal.h +++ b/include/signal.h @@ -119,8 +119,8 @@ typedef uint32 sigset_t; /* Bit set of 32 signals */ union sigval { - int sival_int; /* Integer value */ - void *sival_ptr; /* Pointer value */ + int sival_int; /* Integer value */ + FAR void *sival_ptr; /* Pointer value */ }; /* This structure contains elements that define a queue signal. The following is