mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
ot-main.c: fix signal callback signature
Signal callbacks take a void* as their final parameter, which we don't use in this case. Closes: #1082 Approved by: cgwalters
This commit is contained in:
parent
c0e20861d5
commit
76fc1ba476
@ -360,7 +360,8 @@ ostree_option_context_parse (GOptionContext *context,
|
||||
|
||||
static void
|
||||
on_sysroot_journal_msg (OstreeSysroot *sysroot,
|
||||
const char *msg)
|
||||
const char *msg,
|
||||
void *dummy)
|
||||
{
|
||||
g_print ("%s\n", msg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user