diff mbox

block: genhd.c: fix message typo

Message ID 68b919d0-870f-feb4-d92f-03ae3ed77dce@infradead.org (mailing list archive)
State New, archived
Headers show

Commit Message

Randy Dunlap Nov. 19, 2017, 1:43 a.m. UTC
From: Randy Dunlap <rdunlap@infradead.org>

Fix typo in error message.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
 block/genhd.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jens Axboe Nov. 19, 2017, 6:02 p.m. UTC | #1
On 11/18/2017 06:43 PM, Randy Dunlap wrote:
> From: Randy Dunlap <rdunlap@infradead.org>
> 
> Fix typo in error message.

Thanks Randy, applied.
diff mbox

Patch

--- lnx-414.orig/block/genhd.c
+++ lnx-414/block/genhd.c
@@ -1367,7 +1367,7 @@  struct gendisk *alloc_disk_node(int mino
 
 	if (minors > DISK_MAX_PARTS) {
 		printk(KERN_ERR
-			"block: can't allocated more than %d partitions\n",
+			"block: can't allocate more than %d partitions\n",
 			DISK_MAX_PARTS);
 		minors = DISK_MAX_PARTS;
 	}