Get rid of ignored return value warning

This commit is contained in:
Ciaran Gultnieks 2011-05-16 21:57:36 +01:00
parent 29932d4bdd
commit f1bdc6b187
1 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ void initializePaths()
char buf[BUFSIZ];
memset(buf, 0, BUFSIZ);
// Get path to executable
readlink("/proc/self/exe", buf, BUFSIZ-1);
assert(readlink("/proc/self/exe", buf, BUFSIZ-1) != -1);
pathRemoveFile(buf, '/');
@ -200,7 +200,7 @@ void initializePaths()
char buf[BUFSIZ];
memset(buf, 0, BUFSIZ);
// Get path to executable
readlink("/proc/self/exe", buf, BUFSIZ-1);
assert(readlink("/proc/self/exe", buf, BUFSIZ-1) != -1);
pathRemoveFile(buf, '/');