diff options
-rw-r--r-- | lib/replace/replace.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/replace/replace.c b/lib/replace/replace.c index f3459dd9c2..a00f7053e2 100644 --- a/lib/replace/replace.c +++ b/lib/replace/replace.c @@ -776,7 +776,8 @@ int rep_clock_gettime(clockid_t clk_id, struct timespec *tp) tp->tv_nsec = tval.tv_usec * 1000; break; default: - return EINVAL; + errno = EINVAL; + return -1; } return 0; } |