commit af5b380c605d58d41d894a21feb939c8cd8070eb
parent e08b0c95848abc13ff9794db596ece4d1fe96a82
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Thu, 24 May 2018 17:34:03 +0200
Fix an error message
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/htcp.c b/src/htcp.c
@@ -289,7 +289,7 @@ htcp_load(struct htcp* htcp, const char* path)
file = fopen(path, "r");
if(!file) {
- log_err(htcp, "%s: error opening file `%S'.\n", FUNC_NAME, path);
+ log_err(htcp, "%s: error opening file `%s'.\n", FUNC_NAME, path);
res = RES_IO_ERR;
goto error;
}