mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 19:16:01 +01:00
Resolve warning
This commit is contained in:
parent
6a30019b4e
commit
c5f22141eb
1 changed files with 1 additions and 1 deletions
|
@ -383,7 +383,7 @@ sc_navigate(girara_session_t* session, girara_argument_t* argument,
|
|||
girara_setting_get(session, "pages-per-row", &offset);
|
||||
}
|
||||
|
||||
t = (t == 0) ? offset : t;
|
||||
t = (t == 0) ? (unsigned int) offset : t;
|
||||
if (argument->n == NEXT) {
|
||||
if (scroll_wrap == true) {
|
||||
new_page = new_page + t;
|
||||
|
|
Loading…
Reference in a new issue