diff options
author | 2009-11-13 11:39:56 +0000 | |
---|---|---|
committer | 2009-11-13 11:39:56 +0000 | |
commit | 63c62581baa58a0eea5003fa352baa95617d6fcb (patch) | |
tree | 656820f8ea432ac5e2adf78dfdcda54fd4d42567 | |
parent | Include recipient address in "Recipient rejected" reply. (diff) | |
download | wireguard-openbsd-63c62581baa58a0eea5003fa352baa95617d6fcb.tar.xz wireguard-openbsd-63c62581baa58a0eea5003fa352baa95617d6fcb.zip |
Initialize uninititialized variable.
Not an issue as it does get initialized correctly before use, but reduces warning.
-rw-r--r-- | sys/dev/acpi/dsdt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/acpi/dsdt.c b/sys/dev/acpi/dsdt.c index 5411c4563fc..eeb63113952 100644 --- a/sys/dev/acpi/dsdt.c +++ b/sys/dev/acpi/dsdt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.c,v 1.155 2009/10/16 15:49:25 jordan Exp $ */ +/* $OpenBSD: dsdt.c,v 1.156 2009/11/13 11:39:56 jordan Exp $ */ /* * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> * @@ -3345,6 +3345,7 @@ aml_xparse(struct aml_scope *scope, int ret_type, const char *stype) maxdp = odp; dnprintf(10, "max depth: %d\n", maxdp); } + end = NULL; iscope = scope; start: /* --== Stage 0: Get Opcode ==-- */ |