From: Jens Axboe Date: Tue, 20 Oct 2015 04:37:39 +0000 (-0600) Subject: strlcat: fix header guard typo X-Git-Tag: fio-2.2.11~20 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=4d400e92d60d2c8e02f30c5eba41238567e6e603;p=fio.git strlcat: fix header guard typo FIO_STRLCAT_h -> FIO_STRLCAT_H Signed-off-by: Jens Axboe --- 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);