socket: Remove needless typedef

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
(cherry picked from commit a69424d4c5)
This commit is contained in:
Jakub Jelen
2022-08-29 14:49:12 +02:00
committed by Andreas Schneider
parent 0aaad9eb25
commit b7934ab370

View File

@@ -32,7 +32,7 @@
/* Inlining the key portions of afunix.h in Windows 10 SDK;
* that header isn't available in the mingw environment. */
#define UNIX_PATH_MAX 108
typedef struct sockaddr_un {
struct sockaddr_un {
ADDRESS_FAMILY sun_family;
char sun_path[UNIX_PATH_MAX];
};