diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-05-25 07:47:48 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-05-25 07:47:48 +0000 |
commit | 2bb33be3f61e19ed98077eeb17cf20de10556487 (patch) | |
tree | cede9cb5a810d869e9eb3fb11e7081bf448ceee3 /sys/dev/video_if.h | |
parent | 57ca846a119b68e6a0c20f8ae08b6bd07e0345bf (diff) |
Spacing. Comments. strncpy() -> strlcpy().
Diffstat (limited to 'sys/dev/video_if.h')
-rw-r--r-- | sys/dev/video_if.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/video_if.h b/sys/dev/video_if.h index 7ee06b05645..464ae8c8c4e 100644 --- a/sys/dev/video_if.h +++ b/sys/dev/video_if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: video_if.h,v 1.2 2008/05/24 19:37:34 mglocker Exp $ */ +/* $OpenBSD: video_if.h,v 1.3 2008/05/25 07:47:47 mglocker Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> * @@ -32,6 +32,7 @@ struct video_hw_if { /* close hardware */ int (*close)(void *); + /* ioctl's */ int (*querycap)(void *, struct v4l2_capability *); int (*s_fmt)(void *, struct v4l2_format *); int (*g_fmt)(void *, struct v4l2_format *); |