2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

The ISC__BUFFER_INIT macro had a typo.

This commit is contained in:
Brian Wellington
2001-02-07 01:36:12 +00:00
parent 1e78000f6e
commit abc0c36dc3

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: buffer.h,v 1.38 2001/01/09 21:56:46 bwelling Exp $ */ /* $Id: buffer.h,v 1.39 2001/02/07 01:36:12 bwelling Exp $ */
#ifndef ISC_BUFFER_H #ifndef ISC_BUFFER_H
#define ISC_BUFFER_H 1 #define ISC_BUFFER_H 1
@@ -610,7 +610,7 @@ ISC_LANG_ENDDECLS
(_b)->current = 0; \ (_b)->current = 0; \
(_b)->active = 0; \ (_b)->active = 0; \
(_b)->mctx = NULL; \ (_b)->mctx = NULL; \
ISC_LINK_INIT(b, link); \ ISC_LINK_INIT(_b, link); \
(_b)->magic = ISC_BUFFER_MAGIC; \ (_b)->magic = ISC_BUFFER_MAGIC; \
} while (0) } while (0)