=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/aucat/Attic/amsg.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- src/usr.bin/aucat/Attic/amsg.h 2009/07/25 08:44:27 1.8 +++ src/usr.bin/aucat/Attic/amsg.h 2009/07/25 10:52:18 1.9 @@ -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 * @@ -96,14 +96,14 @@ }; /* - * 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)