diff options
author | Cody P Schafer <devel@codyps.com> | 2014-03-13 11:14:21 -0700 |
---|---|---|
committer | Cody P Schafer <devel@codyps.com> | 2014-03-13 11:14:21 -0700 |
commit | ebfd7d45c6b8eb5b2a1ee6e97a3f21f5f5bf9b43 (patch) | |
tree | bd9dd4f6ebe82943d61818d130b3a3f6d48d44dd /src/ui_act.c | |
parent | 3f77401a554c4db6b67c12732b7acaea7b229bbb (diff) | |
download | pianobar-ebfd7d45c6b8eb5b2a1ee6e97a3f21f5f5bf9b43.tar.gz pianobar-ebfd7d45c6b8eb5b2a1ee6e97a3f21f5f5bf9b43.tar.bz2 pianobar-ebfd7d45c6b8eb5b2a1ee6e97a3f21f5f5bf9b43.zip |
fix warnings now noted due to format string checking
Diffstat (limited to 'src/ui_act.c')
-rw-r--r-- | src/ui_act.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui_act.c b/src/ui_act.c index 4584117..d5c6b2b 100644 --- a/src/ui_act.c +++ b/src/ui_act.c @@ -724,7 +724,7 @@ BarUiActCallback(BarUiActManageStation) { return; } - BarUiMsg (&app->settings, MSG_QUESTION, question); + BarUiMsg (&app->settings, MSG_QUESTION, "%s", question); if (BarReadline (selectBuf, sizeof (selectBuf), allowedActions, &app->input, BAR_RL_FULLRETURN, -1)) { if (selectBuf[0] == 'a') { |