client: fix typo

This commit is contained in:
David Anderson 2017-05-12 16:09:31 -07:00
parent aba8af3bc0
commit b272d1de81
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ static void clear_app_config(PROJECT* p) {
static void print_msgs(vector<string> msgs, PROJECT* p) {
for (unsigned int i=0; i<msgs.size(); i++) {
msg_printf_notice(p, false, NULL, msgs[i].c_str());
msg_printf_notice(p, false, NULL, "%s", msgs[i].c_str());
}
}