Skip to content

Commit

Permalink
Merge pull request #834 from ktf/struct-flock
Browse files Browse the repository at this point in the history
Use struct flock rather than flock to keep mac happy.
  • Loading branch information
ktf committed Sep 14, 2013
2 parents 6c42086 + e7e742a commit 3721594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EventFilter/Utilities/plugins/EvFDaqDirector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ using std::stringstream;
namespace evf {

namespace {
flock make_flock(short type, short whence, off_t start, off_t len, pid_t pid)
struct flock make_flock(short type, short whence, off_t start, off_t len, pid_t pid)
{
#ifdef __APPLE__
return {start, len, pid, type, whence};
Expand Down

0 comments on commit 3721594

Please sign in to comment.