Fix cast warning
[lttng-modules.git] / probes / lttng-kprobes.c
index 8e1ae832cd82abb14d0413a1aee5b13cb1cd9fc8..784002aed09662d179a01bea12a0c4f706bbcaf4 100644 (file)
@@ -119,7 +119,7 @@ int lttng_kprobes_register(const char *name,
                        event->u.kprobe.symbol_name;
        }
        event->u.kprobe.kp.offset = offset;
-       event->u.kprobe.kp.addr = (void *) addr;
+       event->u.kprobe.kp.addr = (void *) (unsigned long) addr;
 
        /*
         * Ensure the memory we just allocated don't trigger page faults.
This page took 0.023485 seconds and 4 git commands to generate.