patch 8.2.4613: return type of swapfile_unchanged() is wrong
Problem: Return type of swapfile_unchanged() is wrong.
Solution: Use "int". (closes #10000 Yeah!)
diff --git a/src/memline.c b/src/memline.c
index e1a4cb3..7b453cd 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -2261,7 +2261,7 @@
* Return TRUE if the swap file looks OK and there are no changes, thus it can
* be safely deleted.
*/
- static time_t
+ static int
swapfile_unchanged(char_u *fname)
{
stat_T st;
diff --git a/src/version.c b/src/version.c
index f304ef3..695ddaf 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4613,
+/**/
4612,
/**/
4611,