Merge branch 'develop' of pwmt.org:zathura into develop

This commit is contained in:
Moritz Lipp 2012-03-27 13:30:10 +02:00
commit 76f63bc1ef

View file

@ -28,7 +28,7 @@
#define file_lock_set(fd, cmd) \
{ \
struct flock lock = { .l_type = cmd, .l_start = 0, .l_whence = SEEK_SET, .l_len = 0}; \
fcntl(fd, F_SETLK, lock, NULL); \
fcntl(fd, F_SETLK, lock); \
}
#endif