From 03d301ead5f702872b8cb948b8cd01b0fa0db5f7 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 30 Nov 2005 02:08:15 +0000 Subject: r11967: Fix more 64-bit warnings. (This used to be commit 9c4436a124f874ae240feaf590141d48c33a635f) --- source4/lib/com/dcom/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/com/dcom/main.c') diff --git a/source4/lib/com/dcom/main.c b/source4/lib/com/dcom/main.c index 1c54f17113..1ee5608895 100644 --- a/source4/lib/com/dcom/main.c +++ b/source4/lib/com/dcom/main.c @@ -319,7 +319,7 @@ NTSTATUS dcom_get_pipe(struct IUnknown *iface, struct dcerpc_pipe **pp) return status; } - DEBUG(2, ("Successfully connected to OXID %llx\n", oxid)); + DEBUG(2, ("Successfully connected to OXID %llx\n", (long long)oxid)); *pp = p; talloc_free(tmp_ctx); -- cgit