diff options
author | Gunnar Beutner <gunnar@beutner.name> | 2021-04-25 07:22:35 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-25 09:28:21 +0200 |
commit | f89c60664c001e72128b0142d972f31cb13590d3 (patch) | |
tree | 61e6caada2b20bd64f85dd494626442526cb7205 /Userland/Libraries | |
parent | 898e9492f79a7ad3bd6e53f3891eea214f929837 (diff) | |
download | serenity-f89c60664c001e72128b0142d972f31cb13590d3.zip |
Ports: Fix building openssh
This fixes a spelling mistake in the timespeccmp() macro and
enables debug symbols for OpenSSH to make diagnosing problems
easier.
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibC/sys/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/sys/time.h b/Userland/Libraries/LibC/sys/time.h index 9cce41c57d..6d187e7ca4 100644 --- a/Userland/Libraries/LibC/sys/time.h +++ b/Userland/Libraries/LibC/sys/time.h @@ -111,6 +111,6 @@ static inline void TIMESPEC_TO_TIMEVAL(struct timeval* tv, const struct timespec #define timespecclear timespecclear #define timespecisset timespecisset #define timespeccmp(ts, us, cmp) \ - (((ts)->tv_sec == (us)->tv_sec) ? ((ts)->vf_nsec cmp(us)->tv_nsec) : ((ts)->tv_sec cmp(us)->tv_sec)) + (((ts)->tv_sec == (us)->tv_sec) ? ((ts)->tv_nsec cmp(us)->tv_nsec) : ((ts)->tv_sec cmp(us)->tv_sec)) __END_DECLS |