mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-02-27 14:34:39 +01:00
Fix some types
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
1a145c5166
commit
71680394a7
1 changed files with 2 additions and 2 deletions
4
render.c
4
render.c
|
@ -307,8 +307,8 @@ render_thread_sort(gconstpointer a, gconstpointer b, gpointer data)
|
|||
unsigned int page_a_index = zathura_page_get_index(page_a);
|
||||
unsigned int page_b_index = zathura_page_get_index(page_b);
|
||||
|
||||
unsigned int last_view_a = 0;
|
||||
unsigned int last_view_b = 0;
|
||||
gint64 last_view_a = 0;
|
||||
gint64 last_view_b = 0;
|
||||
|
||||
g_object_get(zathura->pages[page_a_index], "last-view", &last_view_a, NULL);
|
||||
g_object_get(zathura->pages[page_b_index], "last-view", &last_view_b, NULL);
|
||||
|
|
Loading…
Add table
Reference in a new issue