From 6fcf64ebe0d95b4383b57f36caab994e4df1b7a6 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Tue, 3 Mar 2020 16:13:37 +0100 Subject: [PATCH] lib/util_file.h: fix typo in the macro guard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo in the macro guard. Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- include/lib/util_file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lib/util_file.h b/include/lib/util_file.h index a72d8f39..d4891f98 100644 --- a/include/lib/util_file.h +++ b/include/lib/util_file.h @@ -9,7 +9,7 @@ * it under the terms of the MIT license. See LICENSE for details. */ #ifndef LIB_UTIL_FILE_H -#define LIB_UITL_FILE_H +#define LIB_UTIL_FILE_H int util_file_read_line(char *str, size_t size, const char *fmt, ...); int util_file_read_l(long *val, int base, const char *fmt, ...);