diff options
author | jeff <jeff@FreeBSD.org> | 2002-09-23 00:29:31 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2002-09-23 00:29:31 +0000 |
commit | bbd1b3ae24ea807d9ace28e4430dfeaf802b30e5 (patch) | |
tree | 15afd0451b052f36aa3cb2b0ce56872199c946c5 | |
parent | 95e18ba243a57de3bee4d8cb40626dab1d9588dc (diff) | |
download | FreeBSD-src-bbd1b3ae24ea807d9ace28e4430dfeaf802b30e5.zip FreeBSD-src-bbd1b3ae24ea807d9ace28e4430dfeaf802b30e5.tar.gz |
- Correct the name in the header guards.
Spotted by: rwatson
-rw-r--r-- | sys/sys/alq.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/alq.h b/sys/sys/alq.h index 58d0cb4..92e8925 100644 --- a/sys/sys/alq.h +++ b/sys/sys/alq.h @@ -26,8 +26,8 @@ * $FreeBSD$ * */ -#ifndef _SYS_ALD_H_ -#define _SYS_ALD_H_ +#ifndef _SYS_ALQ_H_ +#define _SYS_ALQ_H_ /* * Opaque type for the Async. Logging Queue @@ -114,4 +114,4 @@ struct ale *alq_get(struct alq *alq, int waitok); */ void alq_post(struct alq *, struct ale *); -#endif /* _SYS_ALD_H_ */ +#endif /* _SYS_ALQ_H_ */ |