X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/322f6f0518f2fca892733dea85d87c33fcb65e83..7711f3fc00259e55f630cfe6104eff3083dc9d77:/sbr/m_backup.c diff --git a/sbr/m_backup.c b/sbr/m_backup.c index 9dcfdf60..5e24a033 100644 --- a/sbr/m_backup.c +++ b/sbr/m_backup.c @@ -2,8 +2,6 @@ /* * m_backup.c -- construct a backup file * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -25,6 +23,6 @@ m_backup (char *file) snprintf(buffer, sizeof(buffer), "%.*s%s%s", (int)(cp - file), file, BACKUP_PREFIX, cp); - unlink(buffer); + (void) m_unlink(buffer); return buffer; }