Skip to content

Commit

Permalink
Merge branch 'udpsource' of https://github.com/open-ephys/GUI into ud…
Browse files Browse the repository at this point in the history
…psource
  • Loading branch information
intirb committed Jan 10, 2013
2 parents d0e2240 + 0097d7f commit 934d9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Processors/DataThreads/NetworkThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ bool NetworkThread::updateBuffer()
{
char * newData;
int receiveData;
receiveData = recvfrom(sockfd, newData, 80, 0, (struct sockaddr *) & dataddr, sizeof(struct sockaddr_in));
receiveData = recvfrom(sockfd, newData, 80, 0, (struct sockaddr *) & dataddr, (socklen_t*) sizeof(dataddr));
if (receiveData < 0)
{
return false;
Expand Down

0 comments on commit 934d9af

Please sign in to comment.