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/wrepl_server/wrepl_in_connection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/wrepl_server/wrepl_in_connection.c') diff --git a/source4/wrepl_server/wrepl_in_connection.c b/source4/wrepl_server/wrepl_in_connection.c index 5ba36a5051..e06e69103e 100644 --- a/source4/wrepl_server/wrepl_in_connection.c +++ b/source4/wrepl_server/wrepl_in_connection.c @@ -155,7 +155,7 @@ static void wreplsrv_recv(struct stream_connection *conn, uint16_t flags) if (!NT_STATUS_IS_OK(status)) { DEBUG(2,("Failed to parse incoming WINS-Replication packet - %s\n", nt_errstr(status))); - DEBUG(10,("packet length %u\n", wreplconn->partial.length)); + DEBUG(10,("packet length %lu\n", (long)wreplconn->partial.length)); NDR_PRINT_DEBUG(wrepl_packet, &call->req_packet); goto failed; } @@ -168,7 +168,7 @@ static void wreplsrv_recv(struct stream_connection *conn, uint16_t flags) wreplconn->partial_read = 0; if (DEBUGLVL(10)) { - DEBUG(10,("Received WINS-Replication packet of length %u\n", wreplconn->partial.length)); + DEBUG(10,("Received WINS-Replication packet of length %lu\n", (long)wreplconn->partial.length)); NDR_PRINT_DEBUG(wrepl_packet, &call->req_packet); } -- cgit