summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/key.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-09-05 09:13:46 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-09-08 07:53:02 +0200
commit05ac47d75e4d945c0c30922260c8bbf1922cdd0f (patch)
tree89b70079f69080b3b78de44efd4982dd0cba94ba /cpukit/posix/include/rtems/posix/key.h
parentposix: Fix warning (diff)
downloadrtems-05ac47d75e4d945c0c30922260c8bbf1922cdd0f.tar.bz2
posix: Use RTEMS_DECONST()
Diffstat (limited to 'cpukit/posix/include/rtems/posix/key.h')
-rw-r--r--cpukit/posix/include/rtems/posix/key.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/include/rtems/posix/key.h b/cpukit/posix/include/rtems/posix/key.h
index 7cc179c3cc..6e52544686 100644
--- a/cpukit/posix/include/rtems/posix/key.h
+++ b/cpukit/posix/include/rtems/posix/key.h
@@ -68,7 +68,7 @@ typedef struct {
/**
* @brief The thread specific POSIX key value.
*/
- const void *value;
+ void *value;
} POSIX_Keys_Key_value_pair;
/**