diff options
author | 2018-03-14 07:07:44 +0000 | |
---|---|---|
committer | 2018-03-14 07:07:44 +0000 | |
commit | a8df2bc27766a94b7391174a5fc263ff74982bb1 (patch) | |
tree | c862da01604f913084a9e36221f4111497a8c9b9 | |
parent | sort expiry-time; (diff) | |
download | wireguard-openbsd-a8df2bc27766a94b7391174a5fc263ff74982bb1.tar.xz wireguard-openbsd-a8df2bc27766a94b7391174a5fc263ff74982bb1.zip |
knf
-rw-r--r-- | usr.sbin/vmctl/vmctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/vmctl/vmctl.c b/usr.sbin/vmctl/vmctl.c index a935c8d2328..580a39a0e12 100644 --- a/usr.sbin/vmctl/vmctl.c +++ b/usr.sbin/vmctl/vmctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmctl.c,v 1.46 2018/02/26 06:36:53 ccardenas Exp $ */ +/* $OpenBSD: vmctl.c,v 1.47 2018/03/14 07:07:44 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> @@ -220,8 +220,8 @@ vm_start_complete(struct imsg *imsg, int *ret, int autoconnect) *ret = ENOENT; break; case VMD_CDROM_INVALID: - warnx("specified iso image is " - "not a regular file"); + warnx("specified iso image is not a regular " + "file"); *ret = ENOENT; break; default: |