mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 16:16:43 +00:00
LibC: Prospective fix for openssl build
serenity/Build/Root/usr/include/sys/socket.h:93:26: error: 'sockaddr_un' undeclared here (not in a function) 93 | char data[sizeof(sockaddr_un)]; | ^~~~~~~~~~~ make[2]: *** [<builtin>: bss_fd.o] Error 1
This commit is contained in:
parent
777b298880
commit
9ba3862ee9
Notes:
sideshowbarker
2024-07-19 03:09:41 +09:00
Author: https://github.com/sahumada 🔰
Commit: 9ba3862ee9
Pull-request: https://github.com/SerenityOS/serenity/pull/3304
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ struct ucred {
|
|||
|
||||
struct sockaddr_storage {
|
||||
union {
|
||||
char data[sizeof(sockaddr_un)];
|
||||
char data[sizeof(struct sockaddr_un)];
|
||||
void* alignment;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue