From 8b1c1ae6f09435ca43a21411d3c5de4948b4eb95 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 8 Aug 1996 16:53:32 +0000 Subject: print_current_time: added leading underscore to variables allocated inside macros. --- testsuites/psxtests/include/pmacros.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'testsuites/psxtests/include') diff --git a/testsuites/psxtests/include/pmacros.h b/testsuites/psxtests/include/pmacros.h index af55d68c80..1f15dac9c0 100644 --- a/testsuites/psxtests/include/pmacros.h +++ b/testsuites/psxtests/include/pmacros.h @@ -65,16 +65,16 @@ #define print_current_time(s1, s2) \ do { \ - char buffer[32]; \ - int status; \ - struct timespec tv; \ + char _buffer[32]; \ + int _status; \ + struct timespec _tv; \ \ - status = clock_gettime( CLOCK_REALTIME, &tv ); \ - assert( !status ); \ + _status = clock_gettime( CLOCK_REALTIME, &_tv ); \ + assert( !_status ); \ \ - (void) ctime_r( &tv.tv_sec, buffer ); \ - buffer[ strlen( buffer ) - 1 ] = 0; \ - printf( "%s%s%s\n", s1, buffer, s2 ); \ + (void) ctime_r( &_tv.tv_sec, _buffer ); \ + _buffer[ strlen( _buffer ) - 1 ] = 0; \ + printf( "%s%s%s\n", s1, _buffer, s2 ); \ fflush(stdout); \ } while ( 0 ) -- cgit v1.2.3