style cleanup: return(a) -> return a, part 1
diff --git a/editors/patch.c b/editors/patch.c
index 4ddcd00..f11f8a1 100644
--- a/editors/patch.c
+++ b/editors/patch.c
@@ -43,7 +43,7 @@
 
 		i++;
 	}
-	return(i);
+	return i;
 }
 
 /* If patch_level is -1 it will remove all directory names
@@ -67,13 +67,13 @@
 		filename_start_ptr = temp + 1;
 	}
 
-	return(xstrdup(filename_start_ptr));
+	return xstrdup(filename_start_ptr);
 }
 
 static int file_doesnt_exist(const char *filename)
 {
 	struct stat statbuf;
-	return(stat(filename, &statbuf));
+	return stat(filename, &statbuf);
 }
 
 int patch_main(int argc, char **argv)
@@ -269,5 +269,5 @@
 	 * 1 = Some hunks failed
 	 * 2 = More serious problems
 	 */
-	return(ret);
+	return ret;
 }