diff options
author | Craig Robbins <kde.psych@gmail.com> | 2015-02-12 13:16:38 +1000 |
---|---|---|
committer | Craig Robbins <kde.psych@gmail.com> | 2015-02-12 13:16:38 +1000 |
commit | 66efaaa983cde27e0ad2f9cc142950a62c868765 (patch) | |
tree | 973ad0b828cc8afa351b43a17cc52d95c61028ab | |
parent | 704453ff124eaca8ef1b6ff564810c4bebb9cf3f (diff) | |
download | minetest-66efaaa983cde27e0ad2f9cc142950a62c868765.tar.gz minetest-66efaaa983cde27e0ad2f9cc142950a62c868765.tar.bz2 minetest-66efaaa983cde27e0ad2f9cc142950a62c868765.zip |
Fix Android compile warning
-rw-r--r-- | src/log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/log.cpp b/src/log.cpp index b3b3f3f1b..85c827597 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -30,7 +30,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "config.h" #ifdef __ANDROID__ -unsigned int android_log_level_mapping[] { +unsigned int android_log_level_mapping[] = { /* LMT_ERROR */ ANDROID_LOG_ERROR, /* LMT_ACTION */ ANDROID_LOG_WARN, /* LMT_INFO */ ANDROID_LOG_INFO, |