Merge pull request #2818 from endrift/fix-gdbstub-build-stable

PowerPC: Fix GDBStub build (stable)
This commit is contained in:
comex 2015-08-09 03:21:19 -04:00
commit d431525292

View File

@ -809,7 +809,7 @@ void gdb_init_local(const char *socket)
{
unlink(socket);
sockaddr_un addr = {}
sockaddr_un addr = {};
addr.sun_family = AF_UNIX;
strcpy(addr.sun_path, socket);