mirror of
https://github.com/eclipse/upm.git
synced 2025-07-09 13:21:22 +03:00
java: Changed size_t and unsigned int to int in array declarations. Renamed buf to buffer where necesarry. Moved most Java array typemaps to java_buffer.i. Fixed some String buffers.
Signed-off-by: Petre Eftime <petre.p.eftime@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com> Conflicts: src/upm.i
This commit is contained in:

committed by
Mihai Tudor Panu

parent
ab730038fd
commit
2cab79b4c2
@ -87,7 +87,7 @@ bool Ublox6::dataAvailable()
|
||||
return false;
|
||||
}
|
||||
|
||||
int Ublox6::readData(char *buffer, size_t len)
|
||||
int Ublox6::readData(char *buffer, int len)
|
||||
{
|
||||
if (m_ttyFd == -1)
|
||||
return(-1);
|
||||
@ -100,7 +100,7 @@ int Ublox6::readData(char *buffer, size_t len)
|
||||
return rv;
|
||||
}
|
||||
|
||||
int Ublox6::writeData(char * buffer, size_t len)
|
||||
int Ublox6::writeData(char * buffer, int len)
|
||||
{
|
||||
if (m_ttyFd == -1)
|
||||
return(-1);
|
||||
|
Reference in New Issue
Block a user