Skip to content

Commit 4002426

Browse files
committed
Fix typo
The "Message" should be in lower case, so that it matches the variable which declared as "message".
1 parent 756871e commit 4002426

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/sleep.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ static ssize_t module_input(struct file *file, /* The file itself */
7171
{
7272
int i;
7373

74-
/* Put the input into Message, where module_output will later be able
74+
/* Put the input into message, where module_output will later be able
7575
* to use it.
7676
*/
7777
for (i = 0; i < MESSAGE_LENGTH - 1 && i < length; i++)

0 commit comments

Comments
 (0)