Fix a stringop-truncation GCC warning
authorLoïc Blot <loic.blot@unix-experience.fr>
Tue, 4 Dec 2018 11:38:11 +0000 (12:38 +0100)
committerLoïc Blot <loic.blot@unix-experience.fr>
Tue, 4 Dec 2018 11:39:19 +0000 (12:39 +0100)
commit7f545db9770e5bf454545ce97900eaba30b77856
tree2d512b8a692580e7ce4a58c7e5d414c47d18179b
parent39ea1cd4283a77066d5f63b90146dfb17de813a8
Fix a stringop-truncation GCC warning

```
minetest/src/filesys.cpp:312:10: warning: ‘char* strncpy(char*, const char*, size_t)’ specified bound 10000 equals destination size [-Wstringop-truncation]
   strncpy(argv_data[2], path.c_str(), 10000);
```
src/filesys.cpp