From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from jdl.com (jdl.com [208.123.74.7]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTP id 2E05CDE303 for ; Sat, 20 Oct 2007 03:43:17 +1000 (EST) Received: from jdl (helo=jdl.com) by jdl.com with local-esmtp (Exim 4.63) (envelope-from ) id 1IivsP-00078Q-Hf for linuxppc-dev@ozlabs.org; Fri, 19 Oct 2007 12:43:14 -0500 To: linuxppc-dev@ozlabs.org Subject: [PATCH 3/4] DTC: Appease the printf() format $Gods with a correct type. Date: Fri, 19 Oct 2007 12:43:13 -0500 From: Jon Loeliger Message-Id: List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Signed-off-by: Jon Loeliger --- tests/get_name.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/get_name.c b/tests/get_name.c index 2481741..a76bdf8 100644 --- a/tests/get_name.c +++ b/tests/get_name.c @@ -55,7 +55,7 @@ void check_name(void *fdt, const char *path) if (len != strlen(getname)) FAIL("fdt_get_name(%s) returned length %d instead of %d", - path, len, strlen(getname)); + path, len, (int) strlen(getname)); /* Now check that it doesn't break if we omit len */ getname2 = fdt_get_name(fdt, offset, NULL); -- 1.5.3.1.139.g9346b