OSDN Git Service

lkdtm: fix spelling mistake: "incremeted" -> "incremented"
authorColin Ian King <colin.king@canonical.com>
Fri, 18 Aug 2017 15:34:59 +0000 (16:34 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Aug 2017 15:47:11 +0000 (17:47 +0200)
Trivial fix to spelling mistake in pr_info message

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/lkdtm_refcount.c

index 29af015..2b99d44 100644 (file)
@@ -202,7 +202,7 @@ static void check_from_zero(refcount_t *ref)
                pr_warn("Zero detected: unsafely reset to max\n");
                break;
        default:
-               pr_info("Fail: zero not detected, incremeted to %d\n",
+               pr_info("Fail: zero not detected, incremented to %d\n",
                        refcount_read(ref));
        }
 }