From b84f1fdc0dddc6f5293b863f511c4f799a653b96 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 10 May 2009 14:39:46 +0000 Subject: 2009-05-10 Joel Sherrill * sp04/system.h, sp04/task1.c, sp04/tswitch.c, sp07/init.c, sp12/init.c, sp13/putbuff.c, sp13/system.h, sp13/task1.c, sp15/init.c, sp16/system.h, sp19/fptask.c, sp25/system.h, sp26/task1.c, sp27/init.c, sp28/init.c, sp29/init.c, sp31/task1.c, sp33/init.c, sp34/changepri.c, sp35/priinv.c, sp37/init.c, sp38/init.c, sp39/init.c, sp41/init.c, sp42/init.c, sp43/init.c, sp44/init.c, sp45/init.c, sp46/init.c, sp47/init.c, sp48/init.c, spfatal03/testcase.h, spfatal05/testcase.h, spfatal06/testcase.h, spfatal_support/system.h, spobjgetnext/init.c, spsize/getint.c, spsize/size.c: Fix warnings. --- testsuites/sptests/sp13/task1.c | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) (limited to 'testsuites/sptests/sp13/task1.c') diff --git a/testsuites/sptests/sp13/task1.c b/testsuites/sptests/sp13/task1.c index 57f1cf4725..471f861d4d 100644 --- a/testsuites/sptests/sp13/task1.c +++ b/testsuites/sptests/sp13/task1.c @@ -7,7 +7,7 @@ * * Output parameters: NONE * - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -20,26 +20,33 @@ #include "system.h" #include /* for memcmp */ +void dope_buffer( + unsigned char *buff, + int buff_size, + unsigned char v +); + unsigned char big_send_buffer[2048]; unsigned char big_receive_buffer[2048]; long buffer[ MESSAGE_SIZE / sizeof(long) ]; -void dope_buffer(unsigned char *buff, - int buff_size, - uint32_t v) +void dope_buffer( + unsigned char *buff, + int buff_size, + unsigned char v +) { - int i; - unsigned char ch; + int i; + unsigned char ch; - ch = (' ' + (v % (0x7f - ' '))); + ch = (' ' + (v % (0x7f - ' '))); - for (i=0; i= 0x7f) - ch = ' '; - } + for (i=0; i= 0x7f) + ch = ' '; + } } rtems_task Task_1( -- cgit v1.2.3