diff options
author | Juan Quintela <quintela@redhat.com> | 2017-07-24 12:51:59 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-09-22 14:11:18 +0200 |
commit | 2a543bfdfadb432d82bab256a9a72b00c331b484 (patch) | |
tree | 2cf460a216b534b1a7b3f34dc21d8d8f99f53ca4 /migration/exec.c | |
parent | 4f0fae7f2bbd09f7a70f678e8db1763d12e5d896 (diff) |
migration: Teach it about G_SOURCE_REMOVE
As this is defined on glib 2.32, add compatibility macros for older glibs.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'migration/exec.c')
-rw-r--r-- | migration/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/exec.c b/migration/exec.c index 08b599e0e2..f3be1baf2e 100644 --- a/migration/exec.c +++ b/migration/exec.c @@ -49,7 +49,7 @@ static gboolean exec_accept_incoming_migration(QIOChannel *ioc, { migration_channel_process_incoming(ioc); object_unref(OBJECT(ioc)); - return FALSE; /* unregister */ + return G_SOURCE_REMOVE; } void exec_start_incoming_migration(const char *command, Error **errp) |