From 4002426f7a18f563635b8f5e6a7cab54b7d3e4a6 Mon Sep 17 00:00:00 2001 From: ChinYikMing Date: Thu, 17 Oct 2024 02:23:21 +0800 Subject: [PATCH] Fix typo The "Message" should be in lower case, so that it matches the variable which declared as "message". --- examples/sleep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sleep.c b/examples/sleep.c index 520a3e0..e38b1da 100644 --- a/examples/sleep.c +++ b/examples/sleep.c @@ -71,7 +71,7 @@ static ssize_t module_input(struct file *file, /* The file itself */ { int i; - /* Put the input into Message, where module_output will later be able + /* Put the input into message, where module_output will later be able * to use it. */ for (i = 0; i < MESSAGE_LENGTH - 1 && i < length; i++)