commit aff5c8a2146b6e9289b5abd2dd0ca3347377345c
parent 7620ffeaa3bf68bc309f973aab8183139e5a28a9
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 6 Jul 2022 11:53:53 +0200
Minor fix of the coding style
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sars.c b/src/sars.c
@@ -102,7 +102,7 @@ load_stream(struct sars* sars, FILE* stream, const char* stream_name)
/* Read file header */
#define READ(Var, Name) { \
if(fread((Var), sizeof(*(Var)), 1, stream) != 1) { \
- log_err(sars, "%s: could not read the %s.\n", stream_name, (Name)); \
+ log_err(sars, "%s: could not read the %s.\n", stream_name, (Name)); \
res = RES_IO_ERR; \
goto error; \
} \