diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-09-13 19:34:28 +0000 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-09-13 19:34:28 +0000 | 
| commit | 450971aa994e68f7c62c4d45065223d5cfc4a22f (patch) | |
| tree | 0128a1e596823272333d8a6616dd2575e8d7c46b /pimd/pim_time.c | |
| parent | e914ccbe9cfb45bbb0ce61bb496e27df6b6136ba (diff) | |
*: LIB_[ERR|WARN] -> EC_LIB
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_time.c')
| -rw-r--r-- | pimd/pim_time.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/pimd/pim_time.c b/pimd/pim_time.c index 029e551167..23c85c2fa8 100644 --- a/pimd/pim_time.c +++ b/pimd/pim_time.c @@ -35,7 +35,7 @@ static int gettime_monotonic(struct timeval *tv)  	result = gettimeofday(tv, 0);  	if (result) { -		flog_err_sys(LIB_ERR_SYSTEM_CALL, +		flog_err_sys(EC_LIB_SYSTEM_CALL,  			     "%s: gettimeofday() failure: errno=%d: %s",  			     __PRETTY_FUNCTION__, errno, safe_strerror(errno));  	} @@ -52,7 +52,7 @@ int64_t pim_time_monotonic_sec()  	struct timeval now_tv;  	if (gettime_monotonic(&now_tv)) { -		flog_err_sys(LIB_ERR_SYSTEM_CALL, +		flog_err_sys(EC_LIB_SYSTEM_CALL,  			     "%s: gettime_monotonic() failure: errno=%d: %s",  			     __PRETTY_FUNCTION__, errno, safe_strerror(errno));  		return -1; @@ -71,7 +71,7 @@ int64_t pim_time_monotonic_dsec()  	int64_t now_dsec;  	if (gettime_monotonic(&now_tv)) { -		flog_err_sys(LIB_ERR_SYSTEM_CALL, +		flog_err_sys(EC_LIB_SYSTEM_CALL,  			     "%s: gettime_monotonic() failure: errno=%d: %s",  			     __PRETTY_FUNCTION__, errno, safe_strerror(errno));  		return -1; @@ -89,7 +89,7 @@ int64_t pim_time_monotonic_usec(void)  	int64_t now_dsec;  	if (gettime_monotonic(&now_tv)) { -		flog_err_sys(LIB_ERR_SYSTEM_CALL, +		flog_err_sys(EC_LIB_SYSTEM_CALL,  			     "%s: gettime_monotonic() failure: errno=%d: %s",  			     __PRETTY_FUNCTION__, errno, safe_strerror(errno));  		return -1;  | 
