Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Change type of sockaddr_un.sun_path on Solaris.
Browse files Browse the repository at this point in the history
Use `byte` as any other OS. This fixes a compiler error in std.socket.
  • Loading branch information
redstar committed Nov 25, 2014
1 parent 445d3d3 commit 198bc18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/sys/posix/sys/un.d
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ else version( Solaris )
struct sockaddr_un
{
sa_family_t sun_family;
char[108] sun_path;
byte[108] sun_path;
}
}
else version( Android )
Expand Down

0 comments on commit 198bc18

Please sign in to comment.