summaryrefslogtreecommitdiff
path: root/v4l2-apps/lib/libv4l/libv4l1/v4l1compat.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2008-08-04 09:24:37 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-08-04 09:24:37 -0300
commit4be14b5602f1f21b6e2a436f240a12797888ae48 (patch)
treeb81dba82924cad166f2ef2a9374fd251e0adbbf1 /v4l2-apps/lib/libv4l/libv4l1/v4l1compat.c
parent9875dfc85aaa5f5404612ac9a5b4cf4071326097 (diff)
parente4cef520f1dbf94bf4d95b570b61639089fc24ff (diff)
downloadmediapointer-dvb-s2-4be14b5602f1f21b6e2a436f240a12797888ae48.tar.gz
mediapointer-dvb-s2-4be14b5602f1f21b6e2a436f240a12797888ae48.tar.bz2
merge: http://linuxtv.org/hg/~gliakhovetski/v4l-dvb
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l2-apps/lib/libv4l/libv4l1/v4l1compat.c')
-rw-r--r--v4l2-apps/lib/libv4l/libv4l1/v4l1compat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/v4l2-apps/lib/libv4l/libv4l1/v4l1compat.c b/v4l2-apps/lib/libv4l/libv4l1/v4l1compat.c
index db3a0027b..f1134fe3b 100644
--- a/v4l2-apps/lib/libv4l/libv4l1/v4l1compat.c
+++ b/v4l2-apps/lib/libv4l/libv4l1/v4l1compat.c
@@ -12,7 +12,7 @@
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
+# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software
@@ -99,13 +99,13 @@ ssize_t read(int fd, void* buffer, size_t n)
return v4l1_read (fd, buffer, n);
}
-void mmap(void *start, size_t length, int prot, int flags, int fd,
+void *mmap(void *start, size_t length, int prot, int flags, int fd,
__off_t offset)
{
return v4l1_mmap(start, length, prot, flags, fd, offset);
}
-void mmap64(void *start, size_t length, int prot, int flags, int fd,
+void *mmap64(void *start, size_t length, int prot, int flags, int fd,
__off64_t offset)
{
return v4l1_mmap(start, length, prot, flags, fd, offset);