Skip to content

Commit 6866a60

Browse files
committed
fixup
1 parent 6345aca commit 6866a60

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/include/port/pg_threads_pthread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ PG_THREADS_MAP(pg_mtx_lock, pthread_mutex_lock, pg_mtx_impl *);
8989
#if defined(_POSIX_TIMEOUTS) && _POSIX_TIMEOUTS > 0
9090
PG_THREADS_MAP(pg_mtx_timedlock, pthread_mutex_timedlock, pg_mtx_impl *, const struct timespec *);
9191
#else
92-
PG_THREADS_UNSUPPORTED(pg_mtx_timedlock, int, pg_mtx_impl *, const struct timespec *);
92+
PG_THREADS_UNSUPPORTED(pg_mtx_timedlock, pg_mtx_impl *, const struct timespec *);
9393
#endif
9494
PG_THREADS_MAP(pg_mtx_trylock, pthread_mutex_trylock, pg_mtx_impl *);
9595
PG_THREADS_MAP(pg_mtx_unlock, pthread_mutex_unlock, pg_mtx_impl *);

src/include/port/pg_threads_win32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ pg_mtx_lock(pg_mtx_impl *mutex)
134134
}
135135
return pg_thrd_success_impl;
136136
}
137-
PG_THREADS_UNSUPPORTED(pg_mtx_timedlock, int, pg_mtx_impl *, const struct timespec *);
137+
PG_THREADS_UNSUPPORTED(pg_mtx_timedlock, pg_mtx_impl *, const struct timespec *);
138138
static inline int
139139
pg_mtx_trylock(pg_mtx_impl *mutex)
140140
{

0 commit comments

Comments
 (0)