summaryrefslogtreecommitdiff
path: root/usr.bin/aucat/amsg.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/aucat/amsg.h')
-rw-r--r--usr.bin/aucat/amsg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/aucat/amsg.h b/usr.bin/aucat/amsg.h
index 44950c32ee1..f0563e9019a 100644
--- a/usr.bin/aucat/amsg.h
+++ b/usr.bin/aucat/amsg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: amsg.h,v 1.8 2009/07/25 08:44:27 ratchov Exp $ */
+/* $OpenBSD: amsg.h,v 1.9 2009/07/25 10:52:18 ratchov Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -96,14 +96,14 @@ struct amsg {
};
/*
- * initialize an amsg structure: fill all fields with 0xff, so the read
- * can test which fields were set
+ * Initialize an amsg structure: fill all fields with 0xff, so the read
+ * can test which fields were set.
*/
#define AMSG_INIT(m) do { memset((m), 0xff, sizeof(struct amsg)); } while (0)
/*
- * since the structure is memset to 0xff, the MSB can be used to check
- * if any filed was set
+ * Since the structure is memset to 0xff, the MSB can be used to check
+ * if any field was set.
*/
#define AMSG_ISSET(x) (((x) & (1 << (8 * sizeof(x) - 1))) == 0)