summaryrefslogtreecommitdiffstats
path: root/source/view.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-09-18 14:44:03 +0200
committerDave Davenport <qball@gmpclient.org>2016-09-18 14:44:03 +0200
commitacdb6bdf53ecac7b5b60c34f1c7dbe15ee4f847b (patch)
tree4089d6af1d170549cc0f738ee62d56c91e2607fa /source/view.c
parent5b843bd08ba1591a1249af5be5743834109ff17d (diff)
Fix fprintf.
Diffstat (limited to 'source/view.c')
-rw-r--r--source/view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/view.c b/source/view.c
index 4c04d20c..392f1809 100644
--- a/source/view.c
+++ b/source/view.c
@@ -411,7 +411,7 @@ static void rofi_view_resize ( RofiViewState *state )
}
if ( h < 0 ) {
fprintf ( stderr,
- "Current padding %u (on each side) does not fit within visible window %u.\n",
+ "Current padding %u (on each side) does not fit within visible window %d.\n",
config.padding,
state->height );
h = ( state->height - state->top_offset - state->height / 3 );