From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 51623 invoked by alias); 18 Jun 2019 15:34:43 -0000 Mailing-List: contact glibc-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: , Sender: glibc-cvs-owner@sourceware.org List-Subscribe: Received: (qmail 51589 invoked by uid 9014); 18 Jun 2019 15:34:43 -0000 Date: Tue, 18 Jun 2019 15:34:00 -0000 Message-ID: <20190618153443.51588.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Zack Weinberg To: glibc-cvs@sourceware.org Subject: [glibc/zack/no-nested-includes] fixup for an uncertain patch X-Act-Checkin: glibc X-Git-Author: Zack Weinberg X-Git-Refname: refs/heads/zack/no-nested-includes X-Git-Oldrev: 0c5751db624599feabff3831891b5a74f5629c39 X-Git-Newrev: a149c444a8a2f4774cdec0b538b54f0fc68a01e7 X-SW-Source: 2019-q2/txt/msg00457.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a149c444a8a2f4774cdec0b538b54f0fc68a01e7 commit a149c444a8a2f4774cdec0b538b54f0fc68a01e7 Author: Zack Weinberg Date: Sun May 26 11:11:33 2019 -0400 fixup for an uncertain patch I'm not sure which public header change requires dl-fileid.h to change in this way. * sysdeps/posix/dl-fileid.h (r_file_id): Use __dev_t and __ino64_t for field types. Diff: --- sysdeps/posix/dl-fileid.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/posix/dl-fileid.h b/sysdeps/posix/dl-fileid.h index 1ed7c2c..6a5dfc7 100644 --- a/sysdeps/posix/dl-fileid.h +++ b/sysdeps/posix/dl-fileid.h @@ -23,8 +23,8 @@ a unique identifier for a file. */ struct r_file_id { - dev_t dev; - ino64_t ino; + __dev_t dev; + __ino64_t ino; }; /* Sample FD to fill in *ID. Returns true on success.