This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[glibc/zack/no-nested-includes] fixup for an uncertain patch


https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a149c444a8a2f4774cdec0b538b54f0fc68a01e7

commit a149c444a8a2f4774cdec0b538b54f0fc68a01e7
Author: Zack Weinberg <zackw@panix.com>
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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]