From: Denis Ovsienko Date: Tue, 10 Aug 2021 12:49:21 +0000 (+0100) Subject: Refine the #ifndef guard in charconv.h. [skip ci] X-Git-Tag: libpcap-1.10.2~338 X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/8396ffcb6ef9c996a46379d901466d2e595c3b1e?ds=inline Refine the #ifndef guard in charconv.h. [skip ci] (cherry picked from commit 9268955286623ba1c255fae4df5bc75c7aa043b0) --- diff --git a/charconv.h b/charconv.h index a37d424b..93103d46 100644 --- a/charconv.h +++ b/charconv.h @@ -32,8 +32,8 @@ * SUCH DAMAGE. */ -#ifndef charonv_h -#define charonv_h +#ifndef charconv_h +#define charconv_h #ifdef _WIN32 extern wchar_t *cp_to_utf_16le(UINT codepage, const char *cp_string, DWORD flags); @@ -41,4 +41,4 @@ extern char *utf_16le_to_cp(UINT codepage, const wchar_t *utf16le_string); extern void utf_8_to_acp_truncated(char *); #endif -#endif +#endif /* charconv_h */