Skip to content

Commit ef92b51

Browse files
committed
cast variable to stop gcc warnings
1 parent eb4cf08 commit ef92b51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ int main(int argc, char *argv[])
3232
fd_set readset, tempset;
3333
int num_clients = 0;
3434
int fd_array[MAX_CLIENTS];
35-
int i, fd;
35+
int fd;
3636

3737
//parse command line arguments
3838
if(argc == 3){
@@ -75,7 +75,7 @@ int main(int argc, char *argv[])
7575
if(FD_ISSET(fd, &tempset)){
7676
if(fd == server_sockfd){
7777
// accept new client connection request
78-
client_sockfd = accept(server_sockfd, (struct sockaddr *) &client_addr, &addrlen);
78+
client_sockfd = accept(server_sockfd, (struct sockaddr *) &client_addr, (socklen_t *)&addrlen);
7979

8080
if(num_clients < MAX_CLIENTS){
8181
FD_SET(client_sockfd, &readset);

0 commit comments

Comments
 (0)