$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80252 - trunk/tools/build/v2/engine
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-27 06:20:24
Author: jurko
Date: 2012-08-27 06:20:22 EDT (Mon, 27 Aug 2012)
New Revision: 80252
URL: http://svn.boost.org/trac/boost/changeset/80252
Log:
Corrected a 'OBJECT * to char *' gcc compilation warning in Boost Jam's function.c module.
Text files modified:
trunk/tools/build/v2/engine/function.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/v2/engine/function.c
==============================================================================
--- trunk/tools/build/v2/engine/function.c (original)
+++ trunk/tools/build/v2/engine/function.c 2012-08-27 06:20:22 EDT (Mon, 27 Aug 2012)
@@ -3126,7 +3126,7 @@
if ( j ) printf( " " );
if ( formal_arg->type_name )
printf( "%s ", object_str( formal_arg->type_name ) );
- printf( "%s", formal_arg->arg_name );
+ printf( "%s", object_str( formal_arg->arg_name ) );
switch ( formal_arg->flags )
{
case ARG_OPTIONAL: printf( " ?" ); break;