diff options
author | 2001-06-23 03:49:06 +0000 | |
---|---|---|
committer | 2001-06-23 03:49:06 +0000 | |
commit | 4f73150c8dd5741143d9528b53b019a520a9ad8f (patch) | |
tree | adc48ae061e00417b1dd1fe556f2f8da7178e885 | |
parent | DLIST_* type/operations. (diff) | |
download | wireguard-openbsd-4f73150c8dd5741143d9528b53b019a520a9ad8f.tar.xz wireguard-openbsd-4f73150c8dd5741143d9528b53b019a520a9ad8f.zip |
Typo.
-rw-r--r-- | sys/sys/queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/queue.h b/sys/sys/queue.h index a4773aefa56..16dce9fd63f 100644 --- a/sys/sys/queue.h +++ b/sys/sys/queue.h @@ -1,4 +1,4 @@ -/* $OpenBSD: queue.h,v 1.18 2001/06/23 03:47:58 angelos Exp $ */ +/* $OpenBSD: queue.h,v 1.19 2001/06/23 03:49:06 angelos Exp $ */ /* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */ /* @@ -230,7 +230,7 @@ struct { \ */ #define DLIST_HEAD(name, type) \ struct name { \ - struct type dh_first; /* first element */ \ + struct type *dh_first; /* first element */ \ } #define DLIST_HEAD_INITIALIZER(head) \ |