1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00

Remove stray uint type.

This was probably copied from an example but some compilers don't like it.
This commit is contained in:
David Steele 2019-12-09 18:28:20 -05:00
parent 471d54a738
commit 800d2972b0

View File

@ -152,7 +152,7 @@ void
harnessTlsServerAccept(void)
{
struct sockaddr_in addr;
uint len = sizeof(addr);
unsigned int len = sizeof(addr);
testClientSocket = accept(testServerSocket, (struct sockaddr *)&addr, &len);