]> rtime.felk.cvut.cz Git - CanFestival-3.git/commitdiff
typo in states.c
authoretisserant <etisserant>
Tue, 1 Apr 2008 07:37:34 +0000 (07:37 +0000)
committeretisserant <etisserant>
Tue, 1 Apr 2008 07:37:34 +0000 (07:37 +0000)
src/states.c

index 6e6bcd9d545b735e1d877974947b51daba077159..1033d842c423c72a02f4c1d2f2cded8679ade25e 100644 (file)
@@ -256,13 +256,13 @@ void setNodeId(CO_Data* d, UNS8 nodeId)
     if((*(UNS32*)d->objdict[offset].pSubindex[1].pObject == 0x600 + *d->bDeviceNodeId)||(*d->bDeviceNodeId==0xFF)){
       /* cob_id_client = 0x600 + nodeId; */
       UNS32 tmp = 0x600 + nodeId;
-      *(UNS32*)d->objdict[offset].pSubindex[1].pObject = UNS32(tmp);
+      *(UNS32*)d->objdict[offset].pSubindex[1].pObject = tmp;
     }
     /* Adjust COB-ID Server -> Client (tx) only id already set to default value or id not valid (id==0xFF)*/
     if((*(UNS32*)d->objdict[offset].pSubindex[2].pObject == 0x580 + *d->bDeviceNodeId)||(*d->bDeviceNodeId==0xFF)){
       /* cob_id_server = 0x580 + nodeId; */
         UNS32 tmp = 0x580 + nodeId;
-      *(UNS32*)d->objdict[offset].pSubindex[2].pObject = UNS32(tmp);
+      *(UNS32*)d->objdict[offset].pSubindex[2].pObject = tmp;
     }
   }