From ca868168ca7d55070e2d526b6bb5d9ba6cbb2939 Mon Sep 17 00:00:00 2001
From: Danny Auble <da@schedmd.com>
Date: Tue, 19 Aug 2014 14:35:58 -0700
Subject: [PATCH] Minor formatting fixes

---
 src/common/slurm_route.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/common/slurm_route.c b/src/common/slurm_route.c
index d85af0edf2b..8c99c5e9195 100644
--- a/src/common/slurm_route.c
+++ b/src/common/slurm_route.c
@@ -405,7 +405,7 @@ extern int route_g_reconfigure(void)
  *
  * RET: slurm_addr_t* - address of node to send messages to be aggregated.
  */
-extern slurm_addr_t* route_g_next_collector ( bool *is_collector )
+extern slurm_addr_t* route_g_next_collector(bool *is_collector)
 {
 	if (route_g_init(NULL) != SLURM_SUCCESS)
 		return NULL;
@@ -421,7 +421,7 @@ extern slurm_addr_t* route_g_next_collector ( bool *is_collector )
  *
  * RET: slurm_addr_t* - address of backup node to send messages to be aggregated.
  */
-extern slurm_addr_t* route_g_next_collector_backup ( void )
+extern slurm_addr_t* route_g_next_collector_backup(void)
 {
 	if (route_g_init(NULL) != SLURM_SUCCESS)
 		return NULL;
@@ -501,7 +501,7 @@ extern int route_split_hostlist_treewidth(hostlist_t hl,
  *
  * RET: slurm_addr_t* - address of node to send messages to be aggregated.
  */
-extern slurm_addr_t* route_next_collector ( bool *is_collector )
+extern slurm_addr_t* route_next_collector(bool *is_collector)
 {
 	*is_collector = this_is_collector;
 	return msg_collect_node;
@@ -516,7 +516,7 @@ extern slurm_addr_t* route_next_collector ( bool *is_collector )
  *
  * RET: slurm_addr_t* - address of backup node to send messages to be aggregated
  */
-extern slurm_addr_t* route_next_collector_backup ( void )
+extern slurm_addr_t* route_next_collector_backup(void)
 {
 	return msg_collect_backup;
 }
-- 
GitLab