commit 00db8f3c8b6f80c709912ce10e3bffcd4fa6edee
parent 4ee8a2378c0e4404716bc1cd34528e86bfe76e61
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 13 Nov 2023 15:55:19 +0100
Fix of an error message
The escape sequence for the new line was badly written: the backslash
character was missing.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/htrdr_args.c b/src/core/htrdr_args.c
@@ -215,7 +215,7 @@ parse_image_parameter(const char* str, void* args)
#undef PARSE
if(!img->definition[0] || !img->definition[1]) {
- fprintf(stderr, "The image definition cannot be null.n");
+ fprintf(stderr, "The image definition cannot be null.\n");
res = RES_BAD_ARG;
goto error;
}