Fix PowerPC format string warnings

__SANE_USERSPACE_TYPES__ must be defined before <linux/types.h> is
included. Hence this patch that moves the definition of that macro into
the source files that need it.

Signed-off-by: Bart Van Assche <bvanassche@acm.org>
This commit is contained in:
Bart Van Assche 2022-04-21 15:18:35 -07:00 committed by Jaegeuk Kim
parent 70e4139665
commit c491657c0e
2 changed files with 7 additions and 3 deletions

View File

@ -17,6 +17,10 @@
#ifndef __F2FS_FS_H__
#define __F2FS_FS_H__
#ifndef __SANE_USERSPACE_TYPES__
#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
@ -42,9 +46,6 @@
#include <inttypes.h>
#ifdef HAVE_LINUX_TYPES_H
#ifndef __SANE_USERSPACE_TYPES__
#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */
#endif
#include <linux/types.h>
#endif
#include <sys/types.h>

View File

@ -18,6 +18,9 @@
#ifndef O_LARGEFILE
#define O_LARGEFILE 0
#endif
#ifndef __SANE_USERSPACE_TYPES__
#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */
#endif
#include <errno.h>
#include <fcntl.h>