Skip to content

Commit

Permalink
mlp - fixed a confusion bet ween words and bytes in the Eventiterator
Browse files Browse the repository at this point in the history
  • Loading branch information
mpurschke committed Sep 10, 2024
1 parent 50379b8 commit 37bd98c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newbasic/rcdaqEventiterator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ int rcdaqEventiterator::read_next_buffer()
}

// say that this is our max size
int flag = htonl(2*64*1024*1024 + 2048);
int flag = htonl(512*1024*1024 + 2048);

int status = writen (_sockfd,(char *) &flag, 4);
if ( status < 0)
Expand Down

0 comments on commit 37bd98c

Please sign in to comment.