summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp13/task1.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-03-07 23:45:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-03-07 23:45:21 +0000
commitdf55b0f1134f039d62703a31c7c67017eb1a0f6a (patch)
tree60fb3cc1deba0314823cd2ee2616babf79ef3974 /testsuites/sptests/sp13/task1.c
parent2005-03-07 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-df55b0f1134f039d62703a31c7c67017eb1a0f6a.tar.bz2
2005-03-07 Joel Sherrill <joel@OARcorp.com>
* sp13/task1.c: Removed warnings.
Diffstat (limited to 'testsuites/sptests/sp13/task1.c')
-rw-r--r--testsuites/sptests/sp13/task1.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/testsuites/sptests/sp13/task1.c b/testsuites/sptests/sp13/task1.c
index 0621255287..52508b2e60 100644
--- a/testsuites/sptests/sp13/task1.c
+++ b/testsuites/sptests/sp13/task1.c
@@ -20,10 +20,10 @@
#include "system.h"
#include <string.h> /* for memcmp */
-char big_send_buffer[2048];
-char big_receive_buffer[2048];
+unsigned char big_send_buffer[2048];
+unsigned char big_receive_buffer[2048];
-long buffer[ MESSAGE_SIZE / sizeof(long) ];
+long buffer[ MESSAGE_SIZE / sizeof(long) ];
void dope_buffer(unsigned char *buff,
int buff_size,
@@ -47,12 +47,12 @@ rtems_task Task_1(
)
{
rtems_id qid;
- uint32_t index;
- uint32_t count;
+ uint32_t index;
+ uint32_t count;
rtems_status_code status;
- uint32_t size;
- uint32_t queue_size;
- char *cp;
+ uint32_t size;
+ uint32_t queue_size;
+ unsigned char *cp;
status = rtems_message_queue_ident(
Queue_name[ 1 ],