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 D709BDE1A5 for ; Sat, 20 Oct 2007 03:43:02 +1000 (EST) Received: from jdl (helo=jdl.com) by jdl.com with local-esmtp (Exim 4.63) (envelope-from ) id 1IivsA-00078F-ST for linuxppc-dev@ozlabs.org; Fri, 19 Oct 2007 12:42:59 -0500 To: linuxppc-dev@ozlabs.org Subject: [PATCH 2/4] DTC: Quiet a bogus "May be used uninitialized" warning. Date: Fri, 19 Oct 2007 12:42:58 -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 --- flattree.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/flattree.c b/flattree.c index a26e71b..5889900 100644 --- a/flattree.c +++ b/flattree.c @@ -136,7 +136,7 @@ static void asm_emit_cell(void *e, cell_t val) static void asm_emit_string(void *e, char *str, int len) { FILE *f = e; - char c; + char c = 0; if (len != 0) { /* XXX: ewww */ -- 1.5.3.1.139.g9346b