patch 8.2.4017: gcc warns for misleading indent in Athena menu code

Problem:    Gcc warns for misleading indent in Athena menu code.
Solution:   Add curlies around the two statements. (Dominique Pellé,
            closes #9480)
diff --git a/src/gui_athena.c b/src/gui_athena.c
index 4da832b..db13bd3 100644
--- a/src/gui_athena.c
+++ b/src/gui_athena.c
@@ -1159,7 +1159,9 @@
 	    XtSetArg(args[n], XtNinternalWidth, 1); n++;
 	    XtSetArg(args[n], XtNborderWidth, 1); n++;
 	    if (menu->image != 0)
+	    {
 		XtSetArg(args[n], XtNbitmap, menu->image); n++;
+	    }
 	}
 	XtSetArg(args[n], XtNhighlightThickness, 0); n++;
 	type = commandWidgetClass;
diff --git a/src/version.c b/src/version.c
index dafef8e..5776f3d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    4017,
+/**/
     4016,
 /**/
     4015,