summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Ratchov <ratchov@cvs.openbsd.org>2016-03-23 06:11:53 +0000
committerAlexandre Ratchov <ratchov@cvs.openbsd.org>2016-03-23 06:11:53 +0000
commitc55c63a2be92773b268a9b24dbf4b2549691f596 (patch)
treee652c7356bca5655c457da3b8ac8fcf6cab65454
parent5e26803f82d8878c84d59af8e4ebd3a846721877 (diff)
Align comments. From David CARLIER <devnexen at gmail.com>. Thanks.
-rw-r--r--usr.bin/sndiod/abuf.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/sndiod/abuf.h b/usr.bin/sndiod/abuf.h
index 827e79eb9c0..d2946924042 100644
--- a/usr.bin/sndiod/abuf.h
+++ b/usr.bin/sndiod/abuf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: abuf.h,v 1.1 2012/11/23 07:03:28 ratchov Exp $ */
+/* $OpenBSD: abuf.h,v 1.2 2016/03/23 06:11:52 ratchov Exp $ */
/*
* Copyright (c) 2008-2012 Alexandre Ratchov <alex@caoua.org>
*
@@ -18,9 +18,9 @@
#define ABUF_H
struct abuf {
- int start; /* offset (frames) where stored data starts */
- int used; /* frames stored in the buffer */
- int len; /* total size of the buffer (frames) */
+ int start; /* offset (frames) where stored data starts */
+ int used; /* frames stored in the buffer */
+ unsigned int len; /* total size of the buffer (frames) */
unsigned char *data;
};