From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29084 invoked by alias); 1 Apr 2003 18:51:47 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 29050 invoked from network); 1 Apr 2003 18:51:46 -0000 Received: from unknown (HELO localhost.localdomain) (195.113.19.66) by sources.redhat.com with SMTP; 1 Apr 2003 18:51:46 -0000 Received: from sunsite.mff.cuni.cz (localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.12.8/8.12.8) with ESMTP id h31IpbqO002889; Tue, 1 Apr 2003 20:51:38 +0200 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.12.8/8.12.8/Submit) id h31IpbU7002887; Tue, 1 Apr 2003 20:51:37 +0200 Date: Tue, 01 Apr 2003 18:51:00 -0000 From: Jakub Jelinek To: Ulrich Drepper , Roland McGrath Cc: Glibc hackers Subject: [PATCH] Fix IA-64 bits/siginfo.h typo Message-ID: <20030401185137.GK16629@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2003-04/txt/msg00004.txt.bz2 Hi! 2003-04-01 Jakub Jelinek * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (sigevent_t): Fix a typo. --- libc/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h.jj 2003-04-01 04:21:00.000000000 -0500 +++ libc/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h 2003-04-01 13:49:19.000000000 -0500 @@ -297,7 +297,7 @@ enum # define __SIGEV_MAX_SIZE 64 # define __SIGEV_PAD_SIZE ((__SIGEV_MAX_SIZE / sizeof (int)) - 4) - struct sigevent +typedef struct sigevent { sigval_t sigev_value; int sigev_signo; Jakub