mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
Fix fprintf.
This commit is contained in:
parent
5b843bd08b
commit
acdb6bdf53
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ static void rofi_view_resize ( RofiViewState *state )
|
||||||
}
|
}
|
||||||
if ( h < 0 ) {
|
if ( h < 0 ) {
|
||||||
fprintf ( stderr,
|
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,
|
config.padding,
|
||||||
state->height );
|
state->height );
|
||||||
h = ( state->height - state->top_offset - state->height / 3 );
|
h = ( state->height - state->top_offset - state->height / 3 );
|
||||||
|
|
Loading…
Reference in a new issue