Skip to content
Snippets Groups Projects
Commit 686ef40f authored by tewk's avatar tewk
Browse files

Fixed cast to avoid compiler warning

parent 33f29e9d
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +252,7 @@ int _slurm_get_stream_addr ( slurm_fd open_fd , slurm_addr * address )
int size ;
size = sizeof ( address ) ;
return _slurm_getsockname ( open_fd , address , & size ) ;
return _slurm_getsockname ( open_fd , ( struct sockaddr * ) address , & size ) ;
}
int _slurm_close_stream ( slurm_fd open_fd )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment