Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 40765 invoked from network); 16 Oct 2007 14:42:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Oct 2007 14:42:54 -0000 Received: (qmail 31278 invoked by uid 500); 16 Oct 2007 14:42:41 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 31260 invoked by uid 500); 16 Oct 2007 14:42:41 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 31251 invoked by uid 99); 16 Oct 2007 14:42:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Oct 2007 07:42:41 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Oct 2007 14:42:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CE9CC1A9832; Tue, 16 Oct 2007 07:42:32 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r585158 - /harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/helpers.c Date: Tue, 16 Oct 2007 14:42:31 -0000 To: commits@harmony.apache.org From: hindessm@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071016144232.CE9CC1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hindessm Date: Tue Oct 16 07:42:29 2007 New Revision: 585158 URL: http://svn.apache.org/viewvc?rev=585158&view=rev Log: Fix another compiler warning. Modified: harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/helpers.c Modified: harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/helpers.c URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/helpers.c?rev=585158&r1=585157&r2=585158&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/helpers.c (original) +++ harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/helpers.c Tue Oct 16 07:42:29 2007 @@ -45,8 +45,8 @@ getPlatformRoots (char *rootStrings) { rootStrings[0] = (char) '/'; - rootStrings[1] = (char) NULL; - rootStrings[2] = (char) NULL; + rootStrings[1] = (char) 0; + rootStrings[2] = (char) 0; return 1; }