From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/11821 Path: news.gmane.org!.POSTED!not-for-mail From: Denys Vlasenko Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH] syslog.h: fix warning "initialization discards 'const' qualifier from pointer target type" Date: Wed, 16 Aug 2017 11:18:37 +0200 Message-ID: <20170816091837.10436-1-vda.linux@googlemail.com> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1502875142 30400 195.159.176.226 (16 Aug 2017 09:19:02 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Wed, 16 Aug 2017 09:19:02 +0000 (UTC) Cc: Denys Vlasenko , musl@lists.openwall.com To: Rich Felker Original-X-From: musl-return-11834-gllmg-musl=m.gmane.org@lists.openwall.com Wed Aug 16 11:18:58 2017 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1dhuTV-0007Sp-SM for gllmg-musl@m.gmane.org; Wed, 16 Aug 2017 11:18:53 +0200 Original-Received: (qmail 20439 invoked by uid 550); 16 Aug 2017 09:18:57 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 20421 invoked from network); 16 Aug 2017 09:18:56 -0000 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com F14A46B369 Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; dmarc=fail (p=quarantine dis=none) header.from=googlemail.com Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=vda.linux@googlemail.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com F14A46B369 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Wed, 16 Aug 2017 09:18:45 +0000 (UTC) Xref: news.gmane.org gmane.linux.lib.musl.general:11821 Archived-At: This happens when syslog.h is included with "#define SYSLOG_NAMES 1" Signed-off-by: Denys Vlasenko CC: musl@lists.openwall.com --- include/syslog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/syslog.h b/include/syslog.h index 5b4d296..25eb3e4 100644 --- a/include/syslog.h +++ b/include/syslog.h @@ -70,7 +70,7 @@ void vsyslog (int, const char *, va_list); #define INTERNAL_NOPRI 0x10 #define INTERNAL_MARK (LOG_NFACILITIES<<3) typedef struct { - char *c_name; + const char *c_name; int c_val; } CODE; #define prioritynames ((CODE *)(const CODE []){ \ -- 2.9.2