diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-09-13 19:38:57 +0000 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-09-13 19:38:57 +0000 | 
| commit | 1c50c1c0d683ebfa53c1607c71b8d26547e8f218 (patch) | |
| tree | 0dbb03af253cdcb0abeacaf6a860a4c7600359c5 /zebra/table_manager.c | |
| parent | 450971aa994e68f7c62c4d45065223d5cfc4a22f (diff) | |
*: style for EC replacements
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/table_manager.c')
| -rw-r--r-- | zebra/table_manager.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/zebra/table_manager.c b/zebra/table_manager.c index 05cf37f946..91b45f3f07 100644 --- a/zebra/table_manager.c +++ b/zebra/table_manager.c @@ -148,8 +148,7 @@ struct table_manager_chunk *assign_table_chunk(uint8_t proto, uint16_t instance,  	tmc->start = start;  	if (RT_TABLE_ID_UNRESERVED_MAX - size  + 1 < start) {  		flog_err(EC_ZEBRA_TM_EXHAUSTED_IDS, -			  "Reached max table id. Start/Size %u/%u", start, -			  size); +			 "Reached max table id. Start/Size %u/%u", start, size);  		XFREE(MTYPE_TM_CHUNK, tmc);  		return NULL;  	} @@ -187,7 +186,7 @@ int release_table_chunk(uint8_t proto, uint16_t instance, uint32_t start,  			continue;  		if (tmc->proto != proto || tmc->instance != instance) {  			flog_err(EC_ZEBRA_TM_DAEMON_MISMATCH, -				  "%s: Daemon mismatch!!", __func__); +				 "%s: Daemon mismatch!!", __func__);  			continue;  		}  		tmc->proto = NO_PROTO; @@ -197,7 +196,7 @@ int release_table_chunk(uint8_t proto, uint16_t instance, uint32_t start,  	}  	if (ret != 0)  		flog_err(EC_ZEBRA_TM_UNRELEASED_CHUNK, -			  "%s: Table chunk not released!!", __func__); +			 "%s: Table chunk not released!!", __func__);  	return ret;  }  | 
