qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 8/9] remove useless cast


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 8/9] remove useless cast
Date: Tue, 9 Mar 2010 23:26:02 +0100

values are alread pointers, no need to cast them to void *

Signed-off-by: Juan Quintela <address@hidden>
---
 migration-exec.c |    2 +-
 migration-fd.c   |    3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/migration-exec.c b/migration-exec.c
index 76518a6..fddbd70 100644
--- a/migration-exec.c
+++ b/migration-exec.c
@@ -142,7 +142,7 @@ int exec_start_incoming_migration(const char *command)

     qemu_set_fd_read_handler(qemu_stdio_fd(f),
                              exec_accept_incoming_migration,
-                             (void *)(unsigned long)f);
+                             f);

     return 0;
 }
diff --git a/migration-fd.c b/migration-fd.c
index 8a4c2b8..e683a82 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_read_handler(fd, fd_accept_incoming_migration,
-                             (void *)(unsigned long)f);
+    qemu_set_fd_read_handler(fd, fd_accept_incoming_migration, f);

     return 0;
 }
-- 
1.6.6.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]