diff options
Diffstat (limited to 'usr/src/cmd/bhyve/fwctl.c')
| -rw-r--r-- | usr/src/cmd/bhyve/fwctl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/cmd/bhyve/fwctl.c b/usr/src/cmd/bhyve/fwctl.c index 9e90c1ade6..00d6ef8681 100644 --- a/usr/src/cmd/bhyve/fwctl.c +++ b/usr/src/cmd/bhyve/fwctl.c @@ -1,4 +1,6 @@ /*- + * SPDX-License-Identifier: BSD-2-Clause-FreeBSD + * * Copyright (c) 2015 Peter Grehan <grehan@freebsd.org> * All rights reserved. * @@ -373,7 +375,7 @@ fwctl_request(uint32_t value) /* Verify size */ if (value < 12) { printf("msg size error"); - exit(1); + exit(4); } rinfo.req_size = value; rinfo.req_count = 1; |
