diff options
author | 2016-12-23 19:55:02 +0000 | |
---|---|---|
committer | 2016-12-23 19:55:02 +0000 | |
commit | 8816acbcca0bfb651ed1d1553f8e397a38b662af (patch) | |
tree | bd46eb0f1ee5377f76e73bdac013cabcbc81a119 | |
parent | Fix white spaces. No binary change. (diff) | |
download | wireguard-openbsd-8816acbcca0bfb651ed1d1553f8e397a38b662af.tar.xz wireguard-openbsd-8816acbcca0bfb651ed1d1553f8e397a38b662af.zip |
Add missing sentinel.
ok deraadt@
-rw-r--r-- | sys/dev/acpi/acpials.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/acpi/acpials.c b/sys/dev/acpi/acpials.c index 2d877d6bc06..a3b0c406ab8 100644 --- a/sys/dev/acpi/acpials.c +++ b/sys/dev/acpi/acpials.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpials.c,v 1.1 2016/07/30 16:25:04 jcs Exp $ */ +/* $OpenBSD: acpials.c,v 1.2 2016/12/23 19:55:02 kettenis Exp $ */ /* * Ambient Light Sensor device driver * ACPI 5.0 spec section 9.2 @@ -71,6 +71,7 @@ struct cfdriver acpials_cd = { const char *acpials_hids[] = { "ACPI0008", + NULL }; int |