1
1

fix compilation with -pedantic

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3007 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
David Lawrence Ramsey 2005-08-29 19:11:26 +00:00
родитель 7fc0ada6cc
Коммит e014fbda80
3 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -1593,7 +1593,7 @@ int do_writeout(bool exiting)
currshortcut = writefile_list;
if (exiting && openfile->filename[0] != '\0' && ISSET(TEMP_FILE)) {
retval = write_file(openfile->filename, NULL, FALSE, 0,
retval = write_file(openfile->filename, NULL, FALSE, OVERWRITE,
FALSE);
/* Write succeeded. */

Просмотреть файл

@ -605,7 +605,8 @@ void die_save_file(const char *die_filename)
retval = get_next_filename(die_filename, ".save");
if (retval[0] != '\0')
failed = (write_file(retval, NULL, TRUE, FALSE, TRUE) == -1);
failed = (write_file(retval, NULL, TRUE, OVERWRITE,
TRUE) == -1);
if (!failed)
fprintf(stderr, _("\nBuffer written to %s\n"), retval);

Просмотреть файл

@ -2027,10 +2027,10 @@ void do_spell(void)
#ifndef NANO_SMALL
if (openfile->mark_set)
i = write_marked_file(temp, temp_file, TRUE, FALSE);
i = write_marked_file(temp, temp_file, TRUE, OVERWRITE);
else
#endif
i = write_file(temp, temp_file, TRUE, FALSE, FALSE);
i = write_file(temp, temp_file, TRUE, OVERWRITE, FALSE);
if (i == -1) {
statusbar(_("Error writing temp file: %s"), strerror(errno));