diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-06-12 08:52:52 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-06-12 08:52:52 +0000 |
commit | 37a6ee0c67b2780f651e0d0a02fb048f55f5cf97 (patch) | |
tree | aa74b4dc519272e126c97b22a0a3f642b2617ff4 /os/rt/ports/e200/compilers | |
parent | bc9dcab2c8863fd1c3b09d2db164606b2e21a70d (diff) | |
download | ChibiOS-37a6ee0c67b2780f651e0d0a02fb048f55f5cf97.tar.gz ChibiOS-37a6ee0c67b2780f651e0d0a02fb048f55f5cf97.tar.bz2 ChibiOS-37a6ee0c67b2780f651e0d0a02fb048f55f5cf97.zip |
Fixed bug #600.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8017 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/ports/e200/compilers')
-rw-r--r-- | os/rt/ports/e200/compilers/GCC/chtypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/rt/ports/e200/compilers/GCC/chtypes.h b/os/rt/ports/e200/compilers/GCC/chtypes.h index 87bb6b74d..2973f8ef8 100644 --- a/os/rt/ports/e200/compilers/GCC/chtypes.h +++ b/os/rt/ports/e200/compilers/GCC/chtypes.h @@ -98,7 +98,7 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ /**
* @brief Optimized thread function declaration macro.
*/
-#define PORT_THD_FUNCTION(tname, arg) msg_t tname(void *arg)
+#define PORT_THD_FUNCTION(tname, arg) void tname(void *arg)
#endif /* _CHTYPES_H_ */
|