mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
pseudo: Fix enum typedef
'pseudo_access_t' is a type, so use typedef. Fixes building pseudo with gcc 10 where -fno-common is the default. (From OE-Core rev: a7d519f742aadc9110c2401f359254210a784f6b) Signed-off-by: Jacob Kroon <jacob.kroon@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
fbb08a1561
commit
b4e1ce1b93
@@ -0,0 +1,31 @@
|
|||||||
|
From a491aececfedf7313d29b80d626e0964fb533548 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jacob Kroon <jacob.kroon@gmail.com>
|
||||||
|
Date: Sun, 3 May 2020 06:24:03 +0200
|
||||||
|
Subject: [PATCH] pseudo_ipc.h: Fix enum typedef
|
||||||
|
|
||||||
|
'pseudo_access_t' is a type, so use typedef.
|
||||||
|
|
||||||
|
Fixes building pseudo with gcc 10 where -fno-common is the default.
|
||||||
|
|
||||||
|
Signed-off-by: Jacob Kroon <jacob.kroon@gmail.com>
|
||||||
|
Upstream-Status: Submitted [https://lists.openembedded.org/g/openembedded-core/message/137758]
|
||||||
|
---
|
||||||
|
pseudo_ipc.h | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/pseudo_ipc.h b/pseudo_ipc.h
|
||||||
|
index caeae5c..d945257 100644
|
||||||
|
--- a/pseudo_ipc.h
|
||||||
|
+++ b/pseudo_ipc.h
|
||||||
|
@@ -29,7 +29,7 @@ typedef struct {
|
||||||
|
char path[];
|
||||||
|
} pseudo_msg_t;
|
||||||
|
|
||||||
|
-enum {
|
||||||
|
+typedef enum {
|
||||||
|
PSA_EXEC = 1,
|
||||||
|
PSA_WRITE = (PSA_EXEC << 1),
|
||||||
|
PSA_READ = (PSA_WRITE << 1),
|
||||||
|
--
|
||||||
|
2.26.2
|
||||||
|
|
||||||
@@ -12,6 +12,7 @@ SRC_URI = "git://git.yoctoproject.org/pseudo \
|
|||||||
file://0006-xattr-adjust-for-attr-2.4.48-release.patch \
|
file://0006-xattr-adjust-for-attr-2.4.48-release.patch \
|
||||||
file://seccomp.patch \
|
file://seccomp.patch \
|
||||||
file://0001-pseudo-On-a-DB-fixup-remove-files-that-do-not-exist-.patch \
|
file://0001-pseudo-On-a-DB-fixup-remove-files-that-do-not-exist-.patch \
|
||||||
|
file://0001-pseudo_ipc.h-Fix-enum-typedef.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRCREV = "060058bb29f70b244e685b3c704eb0641b736f73"
|
SRCREV = "060058bb29f70b244e685b3c704eb0641b736f73"
|
||||||
|
|||||||
Reference in New Issue
Block a user