Fixed typo in objacces.c bigendian side.
--- a/src/objacces.c Thu Mar 20 15:44:35 2008 +0100
+++ b/src/objacces.c Fri Mar 21 09:51:21 2008 +0100
@@ -142,9 +142,9 @@
(*pDataType >= visible_string && *pExpectedSize < szData)) {
# ifdef CANOPEN_BIG_ENDIAN
- if(endianize && dataType > boolean && !(
- dataType >= visible_string &&
- domain <= dataType)) {
+ if(endianize && *pDataType > boolean && !(
+ *pDataType >= visible_string &&
+ domain <= *pDataType)) {
/* data must be transmited with low byte first */
UNS8 i, j = 0;
MSG_WAR(boolean, "data type ", *pDataType);