src/shared/util.c: fix typo

Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
This commit is contained in:
Anthony G. Basile 2016-03-21 11:54:49 -04:00
parent 0fe32c8006
commit 7f4f5b7dba

View File

@ -1116,7 +1116,7 @@ int fd_wait_for_event(int fd, int event, usec_t t) {
struct timespec ts;
int r;
#ifdef HAVE_DECL_PPOLL
#if HAVE_DECL_PPOLL
r = ppoll(&pollfd, 1, t == USEC_INFINITY ? NULL : timespec_store(&ts, t), NULL);
#else
/* Fallback path when ppoll() is unavailable */