forked from Mirrorlandia_minetest/minetest
Get rid of ignored return value warning
This commit is contained in:
parent
29932d4bdd
commit
f1bdc6b187
@ -136,7 +136,7 @@ void initializePaths()
|
|||||||
char buf[BUFSIZ];
|
char buf[BUFSIZ];
|
||||||
memset(buf, 0, BUFSIZ);
|
memset(buf, 0, BUFSIZ);
|
||||||
// Get path to executable
|
// Get path to executable
|
||||||
readlink("/proc/self/exe", buf, BUFSIZ-1);
|
assert(readlink("/proc/self/exe", buf, BUFSIZ-1) != -1);
|
||||||
|
|
||||||
pathRemoveFile(buf, '/');
|
pathRemoveFile(buf, '/');
|
||||||
|
|
||||||
@ -200,7 +200,7 @@ void initializePaths()
|
|||||||
char buf[BUFSIZ];
|
char buf[BUFSIZ];
|
||||||
memset(buf, 0, BUFSIZ);
|
memset(buf, 0, BUFSIZ);
|
||||||
// Get path to executable
|
// Get path to executable
|
||||||
readlink("/proc/self/exe", buf, BUFSIZ-1);
|
assert(readlink("/proc/self/exe", buf, BUFSIZ-1) != -1);
|
||||||
|
|
||||||
pathRemoveFile(buf, '/');
|
pathRemoveFile(buf, '/');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user