Yet another errno correction.
authoranton <anton@openbsd.org>
Mon, 27 Dec 2021 15:38:25 +0000 (15:38 +0000)
committeranton <anton@openbsd.org>
Mon, 27 Dec 2021 15:38:25 +0000 (15:38 +0000)
sys/dev/kcov.c

index ec24374..0a130fd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kcov.c,v 1.41 2021/12/21 06:08:57 anton Exp $ */
+/*     $OpenBSD: kcov.c,v 1.42 2021/12/27 15:38:25 anton Exp $ */
 
 /*
  * Copyright (c) 2018 Anton Lindqvist <anton@openbsd.org>
@@ -319,7 +319,7 @@ kcovclose(dev_t dev, int flag, int mode, struct proc *p)
        kd = kd_lookup(minor(dev));
        if (kd == NULL) {
                mtx_leave(&kcov_mtx);
-               return (EINVAL);
+               return (ENXIO);
        }
 
        if (kd->kd_state == KCOV_STATE_TRACE && kd->kd_kr == NULL) {