s/force_comile_error/force_compile_error/

This commit is contained in:
andvar 2024-04-14 18:02:55 +00:00
parent 9c7f0367c1
commit cec4798ac1
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* $KAME: sctputil.h,v 1.15 2005/03/06 16:04:19 itojun Exp $ */
/* $NetBSD: sctputil.h,v 1.3 2020/01/19 20:51:13 riastradh Exp $ */
/* $NetBSD: sctputil.h,v 1.4 2024/04/14 18:02:55 andvar Exp $ */
#ifndef __SCTPUTIL_H__
#define __SCTPUTIL_H__
@ -85,7 +85,7 @@
pool_init(&(zone), size, 0, 0, 0, name, NULL, IPL_NET);
#else
/* don't know this OS! */
force_comile_error;
force_compile_error;
#endif
/* SCTP_ZONE_GET: allocate element from the zone */
@ -105,7 +105,7 @@
pool_get(&zone, PR_NOWAIT);
#else
/* don't know this OS! */
force_comile_error;
force_compile_error;
#endif
/* SCTP_ZONE_FREE: free element from the zone */
@ -125,7 +125,7 @@
pool_put(&zone, element);
#else
/* don't know this OS! */
force_comile_error;
force_compile_error;
#endif
#define sctp_get_associd(stcb) ((sctp_assoc_t)stcb->asoc.my_vtag)