ovs-dpctl: Suppress compiler warning on 64 bit linux.
authorEthan Jackson <ethan@nicira.com>
Thu, 17 Nov 2011 23:26:00 +0000 (15:26 -0800)
committerEthan Jackson <ethan@nicira.com>
Thu, 17 Nov 2011 23:32:57 +0000 (15:32 -0800)
utilities/ovs-dpctl.c:851:42: error: cast to pointer from integer
of different size [-Werror=int-to-pointer-cast]

utilities/ovs-dpctl.c

index 5fa6fb7..56d648c 100644 (file)
@@ -848,7 +848,8 @@ do_normalize_actions(int argc, char *argv[])
         int n = -1;
 
         if (sscanf(argv[i], "%15[^=]=%d%n", name, &number, &n) > 0 && n > 0) {
-            shash_add(&port_names, name, (void *) number);
+            uintptr_t n = number;
+            shash_add(&port_names, name, (void *) n);
         } else {
             ovs_fatal(0, "%s: expected NAME=NUMBER", argv[i]);
         }