Merge "Fix lockf for LP32." am: a449fafc89
am: 44c4b858ec

* commit '44c4b858ec3892243cc085faf8a96b44bb8a5a9c':
  Fix lockf for LP32.
diff --git a/libc/bionic/lockf.cpp b/libc/bionic/lockf.cpp
index 1510b3d..804ad68 100644
--- a/libc/bionic/lockf.cpp
+++ b/libc/bionic/lockf.cpp
@@ -34,7 +34,7 @@
 
 int lockf64(int fd, int cmd, off64_t length) {
   // Translate POSIX lockf into fcntl.
-  struct flock fl;
+  struct flock64 fl;
   memset(&fl, 0, sizeof(fl));
   fl.l_whence = SEEK_CUR;
   fl.l_start = 0;