Zap useless cast
authorkn <kn@openbsd.org>
Fri, 19 Aug 2022 18:56:26 +0000 (18:56 +0000)
committerkn <kn@openbsd.org>
Fri, 19 Aug 2022 18:56:26 +0000 (18:56 +0000)
opendev(3) takes a const char * (since 2012, thanks tb),
just what getinfo() provides.
No amd64 object change.

OK millert tb

sbin/vnconfig/vnconfig.c

index 6e2e49f..4ca1f9d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vnconfig.c,v 1.8 2022/08/16 16:18:16 kn Exp $ */
+/*     $OpenBSD: vnconfig.c,v 1.9 2022/08/19 18:56:26 kn Exp $ */
 /*
  * Copyright (c) 1993 University of Utah.
  * Copyright (c) 1990, 1993
@@ -234,7 +234,7 @@ getinfo(const char *vname, int *availp)
                print_all = 1;
        }
 
-       vd = opendev((char *)vname, O_RDONLY, OPENDEV_PART, NULL);
+       vd = opendev(vname, O_RDONLY, OPENDEV_PART, NULL);
        if (vd == -1)
                err(1, "open: %s", vname);