diff mbox series

raw handler: fix typo

Message ID 20210309085224.12350-1-christian.storm@siemens.com
State Accepted
Headers show
Series raw handler: fix typo | expand

Commit Message

Storm, Christian March 9, 2021, 8:52 a.m. UTC
Signed-off-by: Christian Storm <christian.storm@siemens.com>
---
 handlers/raw_handler.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/handlers/raw_handler.c b/handlers/raw_handler.c
index 542d942..1007e8b 100644
--- a/handlers/raw_handler.c
+++ b/handlers/raw_handler.c
@@ -157,7 +157,7 @@  static int copy_raw_image(struct img_type *img,
 	proplist = dict_get_list(&img->properties, "copyfrom");
 
 	if (!proplist || !(entry = LIST_FIRST(proplist))) {
-		ERROR("MIssing source device, no copyfrom property");
+		ERROR("Missing source device, no copyfrom property");
 		return -EINVAL;
 	}
 	fdin = open(entry->value, O_RDONLY);