From ef7cb2253be8e9897f3fa8ea19dd264dfbcfd139 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 10 Apr 2008 03:06:11 +0000 Subject: [PATCH] Rather use a char[] for the path. uint8_t[] is rather uncomfortable to use with the string and *printf() functions. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24882 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/sys/un.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/posix/sys/un.h b/headers/posix/sys/un.h index e85af6bbf5..f0572396dc 100644 --- a/headers/posix/sys/un.h +++ b/headers/posix/sys/un.h @@ -12,7 +12,7 @@ struct sockaddr_un { uint8_t sun_len; uint8_t sun_family; - uint8_t sun_path[128]; + char sun_path[128]; }; #endif /* _SYS_UN_H */