From patchwork Sat Sep 11 15:51:18 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnaud Lacombe X-Patchwork-Id: 172112 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o8BFrsFt029069 for ; Sat, 11 Sep 2010 15:54:10 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753140Ab0IKPyK (ORCPT ); Sat, 11 Sep 2010 11:54:10 -0400 Received: from mail-gy0-f174.google.com ([209.85.160.174]:48531 "EHLO mail-gy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752394Ab0IKPyJ (ORCPT ); Sat, 11 Sep 2010 11:54:09 -0400 Received: by mail-gy0-f174.google.com with SMTP id 8so1615205gyd.19 for ; Sat, 11 Sep 2010 08:54:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references; bh=APJrxi7fMlX7vcqgaUxwCjFkJMD8w4gp/K54a5VltEQ=; b=HBAAYy4he2u4WHygPTeeD07l3KzNjZZRHzDwEthTHVVzPTn6apWqve17lvwjksoS/h Y+icjM5Zhkvk+rd1ktOsl+9qzwEZGyB9amyU4LfXFMvILZwknsIIqbG5K1qy3xlKjONh 4sGilXX3lA4JeatUT4naDFXhgxyp9MBbwY9is= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=XiTEsnXHKhbqH9Hq5nhNSnxXaN0c9AJv8jmmRkX+jB7cpzjXZ1vIAFzOgPLPsCgUDk YRibxTSbv2MVlfYagO8gHg+4hpvC/CoIcQ8guGu6chOLBuhZ50OwQVAUe4R6cBWlmGdb SSQ/VmvY/331bvNgN+gZ2XbWbMmYj7TNGnUPk= Received: by 10.151.6.5 with SMTP id j5mr856974ybi.37.1284220449454; Sat, 11 Sep 2010 08:54:09 -0700 (PDT) Received: from localhost.localdomain (69-165-136-93.dsl.teksavvy.com [69.165.136.93]) by mx.google.com with ESMTPS id m12sm4025812ybn.19.2010.09.11.08.54.07 (version=SSLv3 cipher=RC4-MD5); Sat, 11 Sep 2010 08:54:08 -0700 (PDT) From: Arnaud Lacombe To: Sam Ravnborg , Michal Marek Cc: linux-kbuild , Arnaud Lacombe Subject: [PATCH 11/15] kconfig: constify file name Date: Sat, 11 Sep 2010 11:51:18 -0400 Message-Id: <1284220282-3500-12-git-send-email-lacombar@gmail.com> X-Mailer: git-send-email 1.7.2.30.gc37d7.dirty In-Reply-To: <1284220282-3500-1-git-send-email-lacombar@gmail.com> References: <1284220282-3500-1-git-send-email-lacombar@gmail.com> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Sat, 11 Sep 2010 15:54:10 +0000 (UTC) diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 6ee2e4f..648c609 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h @@ -18,7 +18,7 @@ extern "C" { struct file { struct file *next; struct file *parent; - char *name; + const char *name; int lineno; int flags; };