Use size_t for sizes.

This commit is contained in:
Ralf Corsepius
2007-02-05 18:06:40 +00:00
parent 9d3e9405ef
commit 6e5da27234
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ ssize_t _POSIX_Message_queue_Receive_support(
int _POSIX_Message_queue_Send_support(
mqd_t mqdes,
const char *msg_ptr,
uint32_t msg_len,
size_t msg_len,
uint32_t msg_prio,
Watchdog_Interval timeout
);

View File

@@ -41,7 +41,7 @@
int _POSIX_Message_queue_Send_support(
mqd_t mqdes,
const char *msg_ptr,
uint32_t msg_len,
size_t msg_len,
uint32_t msg_prio,
Watchdog_Interval timeout
)