mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 17:46:03 +01:00
coding style
This commit is contained in:
parent
45366ecadd
commit
f47775abf2
1 changed files with 4 additions and 2 deletions
|
@ -487,13 +487,15 @@ document_close(zathura_t* zathura)
|
|||
return true;
|
||||
}
|
||||
|
||||
typedef struct page_set_delayed_s {
|
||||
typedef struct page_set_delayed_s
|
||||
{
|
||||
zathura_t* zathura;
|
||||
unsigned int page;
|
||||
} page_set_delayed_t;
|
||||
|
||||
static gboolean
|
||||
page_set_delayed_impl(gpointer data) {
|
||||
page_set_delayed_impl(gpointer data)
|
||||
{
|
||||
page_set_delayed_t* p = data;
|
||||
page_set(p->zathura, p->page);
|
||||
|
||||
|
|
Loading…
Reference in a new issue