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
|
static void
|
||||||
on_sysroot_journal_msg (OstreeSysroot *sysroot,
|
on_sysroot_journal_msg (OstreeSysroot *sysroot,
|
||||||
const char *msg)
|
const char *msg,
|
||||||
|
void *dummy)
|
||||||
{
|
{
|
||||||
g_print ("%s\n", msg);
|
g_print ("%s\n", msg);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue