1
0
Fork 0

Use proper spelling for __FreeBSD__ pre-processor define.

This commit is contained in:
Gleb Smirnoff 2022-02-07 11:59:03 -08:00 committed by John Preston
parent 54e750cca0
commit 3604a7f023

View file

@ -4,11 +4,11 @@
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
#ifdef __FREEBSD__
#ifdef __FreeBSD__
#include <malloc_np.h>
#else // __FREEBSD__
#else // __FreeBSD__
#include <jemalloc/jemalloc.h>
#endif // !__FREEBSD__
#endif // !__FreeBSD__
namespace {