diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2015-07-10 19:04:05 +0200 |
---|---|---|
committer | Loic Blot <loic.blot@unix-experience.fr> | 2015-07-10 19:04:05 +0200 |
commit | e6f0178e83b81befded22d3a0de8200739e2d7c3 (patch) | |
tree | 39afb35cc1b8dcccf686372c728b6f315473385d /src/porting.h | |
parent | cb8978fb1d6576ec82526adcc8deea2b745c5dca (diff) | |
download | minetest-e6f0178e83b81befded22d3a0de8200739e2d7c3.tar.gz minetest-e6f0178e83b81befded22d3a0de8200739e2d7c3.tar.bz2 minetest-e6f0178e83b81befded22d3a0de8200739e2d7c3.zip |
Little coding style fix on porting.h
Diffstat (limited to 'src/porting.h')
-rw-r--r-- | src/porting.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/porting.h b/src/porting.h index add3926ea..2a91fdd06 100644 --- a/src/porting.h +++ b/src/porting.h @@ -60,7 +60,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <unistd.h> #include <stdint.h> //for uintptr_t -#if (defined(linux) || defined(__linux) || defined(__GNU__)) && !defined(_GNU_SOURCE) + #if (defined(linux) || defined(__linux) || defined(__GNU__)) && !defined(_GNU_SOURCE) #define _GNU_SOURCE #endif |