aboutsummaryrefslogtreecommitdiff
path: root/src/paramproc.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/paramproc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/paramproc.cpp b/src/paramproc.cpp
index 34e973e..67ef44b 100644
--- a/src/paramproc.cpp
+++ b/src/paramproc.cpp
@@ -11,7 +11,7 @@ Bu::ParamProc::ParamPtr::ParamPtr()
11 type = vtunset; 11 type = vtunset;
12} 12}
13 13
14ptrtype( std::string, str ); 14ptrtype( Bu::FString, str );
15ptrtype( uint64_t, uint64 ); 15ptrtype( uint64_t, uint64 );
16ptrtype( uint32_t, uint32 ); 16ptrtype( uint32_t, uint32 );
17ptrtype( uint16_t, uint16 ); 17ptrtype( uint16_t, uint16 );
@@ -481,7 +481,7 @@ int Bu::ParamProc::help( int argc, char *argv[] )
481 if( (*i)->sWord.getStr() ) 481 if( (*i)->sWord.getStr() )
482 { 482 {
483 printf("--"); 483 printf("--");
484 std::string sTmp = (*i)->sWord.getStr(); 484 Bu::FString sTmp = (*i)->sWord.getStr();
485 if( (*i)->sExtra.getStr() ) 485 if( (*i)->sExtra.getStr() )
486 sTmp += (*i)->sExtra.getStr(); 486 sTmp += (*i)->sExtra.getStr();
487 printf( fmt, sTmp.c_str() ); 487 printf( fmt, sTmp.c_str() );