From 4d400e92d60d2c8e02f30c5eba41238567e6e603 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Mon, 19 Oct 2015 22:37:39 -0600 Subject: [PATCH] strlcat: fix header guard typo FIO_STRLCAT_h -> FIO_STRLCAT_H Signed-off-by: Jens Axboe --- lib/strlcat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/strlcat.h b/lib/strlcat.h index 34b668e3..baeace40 100644 --- a/lib/strlcat.h +++ b/lib/strlcat.h @@ -1,5 +1,5 @@ #ifndef FIO_STRLCAT_H -#define FIO_STRLCAT_h +#define FIO_STRLCAT_H size_t strlcat(char *dst, const char *src, size_t size); -- 2.25.1