vxWorks: long int* to int* cast on 32-bit

This commit is contained in:
Matej Sekoranja
2013-06-01 21:39:23 +02:00
parent 4731d4c854
commit 43168fede6
+1 -2
View File
@@ -507,9 +507,8 @@ void copy_DBR(const void * dbr, unsigned count, PVStructure::shared_pointer cons
if (sizeof(pT) == 4)
value->put(0, count, static_cast<const int32*>(dbr), 0);
else
#else
value->put(0, count, static_cast<const pT*>(dbr), 0);
#endif
value->put(0, count, static_cast<const pT*>(dbr), 0);
}
}