diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-12-03 17:02:30 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-12-03 17:02:30 +0000 |
commit | 110d1588c4df6978612aeeab62547f656fce39a7 (patch) | |
tree | c58e1651fb3be4fa1c33e43f27b9317f0c8849fd | |
parent | bd8717271007299f72c2ce7a5ea54c10861fd3f9 (diff) |
missing ; in previous
-rw-r--r-- | sys/dev/usb/uticom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uticom.c b/sys/dev/usb/uticom.c index c4d160e60ac..58d81bab22a 100644 --- a/sys/dev/usb/uticom.c +++ b/sys/dev/usb/uticom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uticom.c,v 1.6 2010/11/20 20:11:19 miod Exp $ */ +/* $OpenBSD: uticom.c,v 1.7 2010/12/03 17:02:29 jakemsr Exp $ */ /* * Copyright (c) 2005 Dmitry Komissaroff <dxi@mail.ru>. * @@ -109,7 +109,7 @@ static int uticomdebug = 0; struct uticom_fw_header { uint16_t length; uint8_t checkSum; -} __packed +} __packed; struct uticom_buf { unsigned int buf_size; |