ovsdb: Implement new "declare" operation.
[openvswitch] / lib / leak-checker.c
index c2c4348f5841fbc4a7fd36a95b54a5ddbe685d0a..8d256bc8c56ef9ad0fd0ef2b2f3242a31536b6a4 100644 (file)
@@ -141,7 +141,7 @@ log_callers(const char *format, ...)
     putc(':', file);
     backtrace_capture(&backtrace);
     for (i = 0; i < backtrace.n_frames; i++) {
-        fprintf(file, " 0x%x", backtrace.frames[i]);
+        fprintf(file, " 0x%"PRIxPTR, backtrace.frames[i]);
     }
     putc('\n', file);
 }