Mercurial > ecos
changeset 501:7b8fa5a6b0b3
* src/mqueue.cxx: Fix multi-line string literal warning.
| author | jlarmour |
|---|---|
| date | Sat, 18 Jan 2003 04:09:31 +0000 |
| parents | b6080ba5b75a |
| children | b43ec5f18a97 |
| files | packages/compat/posix/current/ChangeLog packages/compat/posix/current/src/mqueue.cxx |
| diffstat | 2 files changed, 8 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/compat/posix/current/ChangeLog +++ b/packages/compat/posix/current/ChangeLog @@ -1,3 +1,7 @@ +2003-01-18 Jonathan Larmour <jifl@eCosCentric.com> + + * src/mqueue.cxx: Fix multi-line string literal warning. + 2003-01-13 Jonathan Larmour <jifl@eCosCentric.com> * doc/posix.sgml: Document them.
--- a/packages/compat/posix/current/src/mqueue.cxx +++ b/packages/compat/posix/current/src/mqueue.cxx @@ -682,8 +682,8 @@ mq_timedsend( mqd_t mqdes, const char *m unsigned int msg_prio, const struct timespec *abs_timeout) { CYG_REPORT_FUNCTYPE( "returning %d" ); - CYG_REPORT_FUNCARG6( "mqdes=%08x, msg_ptr=%08x, msg_len=%u, msg_prio=%u, - abs_timeout = %lu, %ld", + CYG_REPORT_FUNCARG6( "mqdes=%08x, msg_ptr=%08x, msg_len=%u, msg_prio=%u, " + "abs_timeout = %lu, %ld", mqdes, msg_ptr, msg_len, msg_prio, abs_timeout->tv_sec, abs_timeout->tv_nsec); CYG_CHECK_DATA_PTRC( msg_ptr ); @@ -769,8 +769,8 @@ mq_timedreceive( mqd_t mqdes, char *msg_ unsigned int *msg_prio, const struct timespec *abs_timeout) { CYG_REPORT_FUNCTYPE( "returning %ld" ); - CYG_REPORT_FUNCARG6( "mqdes=%08x, msg_ptr=%08x, msg_len=%u, msg_prio=%08x, - abs_timeout = %lu, %ld", + CYG_REPORT_FUNCARG6( "mqdes=%08x, msg_ptr=%08x, msg_len=%u, msg_prio=%08x, " + "abs_timeout = %lu, %ld", mqdes, msg_ptr, msg_len, msg_prio, abs_timeout->tv_sec, abs_timeout->tv_nsec ); CYG_CHECK_DATA_PTRC( msg_ptr );
