diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2011-05-16 16:58:02 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2011-05-16 16:58:02 +0000 |
commit | 75ec1fedc7532b4743bedc1ec4881d90b7d71452 (patch) | |
tree | fe00077f710f0f357548deb62f9c82d63bfb270b /ext/session/mod_files.c | |
parent | 27dd44db9577f09864cb231b0e1e58efe9a14230 (diff) | |
download | php-git-75ec1fedc7532b4743bedc1ec4881d90b7d71452.tar.gz |
Add php_ignore_value() macro to suppress unused return value warnings
from gcc. There are times when we really don't care about the return
value and this will cleanly tell gcc.
Diffstat (limited to 'ext/session/mod_files.c')
-rw-r--r-- | ext/session/mod_files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c index 0627414b7a..c3c35093c3 100644 --- a/ext/session/mod_files.c +++ b/ext/session/mod_files.c @@ -390,7 +390,7 @@ PS_WRITE_FUNC(files) /* Truncate file if the amount of new data is smaller than the existing data set. */ if (vallen < (int)data->st_size) { - ftruncate(data->fd, 0); + php_ignore_value(ftruncate(data->fd, 0)); } #if defined(HAVE_PWRITE) |