From 500f8aec81c3a378e22c6ec767cf6d8fbc9f77b4 Mon Sep 17 00:00:00 2001 From: Andrew Widdersheim Date: Mon, 13 Apr 2015 08:04:56 -0400 Subject: Readability fix diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index 63f9fd9..a18c37a 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c @@ -577,7 +577,8 @@ process_arguments (int argc, char **argv) if ((temp=strchr(optarg,','))!=NULL) { *temp='\0'; if (!is_intnonneg (optarg)) - usage2 (_("Invalid certificate expiration period"), optarg); days_till_exp_warn = atoi(optarg); + usage2 (_("Invalid certificate expiration period"), optarg); + days_till_exp_warn = atoi (optarg); *temp=','; temp++; if (!is_intnonneg (temp)) -- cgit v0.10-9-g596f