Skip to content

Commit

Permalink
* Fixed compilation issue with usage of C++ string instead of C string
Browse files Browse the repository at this point in the history
  • Loading branch information
jredmondson committed Mar 25, 2019
1 parent b96e2f4 commit f45a272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gams/algorithms/Greet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ gams::algorithms::GreetFactory::create(
madara_logger_ptr_log(gams::loggers::global_logger.get(),
gams::loggers::LOG_MAJOR,
"gams::algorithms::GreetFactory:" \
" guard group set to %s\n", guard_group);
" guard group set to %s\n", guard_group.c_str());

break;
}
Expand Down

0 comments on commit f45a272

Please # to comment.