From patchwork Wed Mar 10 10:03:16 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [02/14] remove useless cast Date: Wed, 10 Mar 2010 00:03:16 -0000 From: Juan Quintela X-Patchwork-Id: 47216 Message-Id: <24f44aa87f6978de9fe1f2b1c4303b9e0a39ad95.1268214633.git.quintela@redhat.com> To: qemu-devel@nongnu.org values are already pointers, no need to cast them to void * Signed-off-by: Juan Quintela --- migration-exec.c | 3 +-- migration-fd.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/migration-exec.c b/migration-exec.c index 6ff8449..5435827 100644 --- a/migration-exec.c +++ b/migration-exec.c @@ -141,8 +141,7 @@ int exec_start_incoming_migration(const char *command) } qemu_set_fd_handler2(qemu_stdio_fd(f), NULL, - exec_accept_incoming_migration, NULL, - (void *)(unsigned long)f); + exec_accept_incoming_migration, NULL, f); return 0; } diff --git a/migration-fd.c b/migration-fd.c index 9cf52ce..0abd372 100644 --- a/migration-fd.c +++ b/migration-fd.c @@ -136,8 +136,7 @@ int fd_start_incoming_migration(const char *infd) return -errno; } - qemu_set_fd_handler2(fd, NULL, fd_accept_incoming_migration, NULL, - (void *)(unsigned long)f); + qemu_set_fd_handler2(fd, NULL, fd_accept_incoming_migration, NULL, f); return 0; }