Mark ignored error return as intentional

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-03-05 18:36:20 -08:00
parent 4f4fff3917
commit c365103029

View file

@ -605,7 +605,7 @@ static void save_backup(const char *name, const char *ext, const char *new_ext)
* maybe no old file existed. Regardless, we'll write the
* new file.
*/
subsurface_rename(name, newname);
(void) subsurface_rename(name, newname);
free(newname);
}