From 9a56cb39b3b0cddceac88f7f20506e952ebb750d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 1 Sep 2005 06:39:19 +0000 Subject: r9876: Fix some 64-bit warnings for Itanium machine. (This used to be commit 9e375d82e828879704442e5a27a9938015953de2) --- source4/torture/raw/search.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/torture/raw/search.c') diff --git a/source4/torture/raw/search.c b/source4/torture/raw/search.c index 96ceaf0a02..88fb0af581 100644 --- a/source4/torture/raw/search.c +++ b/source4/torture/raw/search.c @@ -547,8 +547,8 @@ static NTSTATUS multiple_search(struct smbcli_state *cli, #define CHECK_VALUE(v, correct) do { \ if ((v) != (correct)) { \ - printf("(%s) Incorrect value %s=%d - should be %d\n", \ - __location__, #v, v, (int)correct); \ + printf("(%s) Incorrect value %s=%ld - should be %ld\n", \ + __location__, #v, (long)v, (long)correct); \ ret = False; \ goto done; \ }} while (0) -- cgit