From 66b077576313eda129bce9f58fdc894d857cb121 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 13 May 2020 12:56:53 +0200 Subject: checksrc: enhance the ASTERISKSPACE and update code accordingly Fine: "struct hello *world" Not fine: "struct hello* world" (and variations) Closes #5386 --- tests/libtest/lib582.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/libtest/lib582.c') diff --git a/tests/libtest/lib582.c b/tests/libtest/lib582.c index c0678b0e5..96841052b 100644 --- a/tests/libtest/lib582.c +++ b/tests/libtest/lib582.c @@ -44,7 +44,7 @@ struct ReadWriteSockets /** * Remove a file descriptor from a sockets array. */ -static void removeFd(struct Sockets* sockets, curl_socket_t fd, int mention) +static void removeFd(struct Sockets *sockets, curl_socket_t fd, int mention) { int i; @@ -64,7 +64,7 @@ static void removeFd(struct Sockets* sockets, curl_socket_t fd, int mention) /** * Add a file descriptor to a sockets array. */ -static void addFd(struct Sockets* sockets, curl_socket_t fd, const char *what) +static void addFd(struct Sockets *sockets, curl_socket_t fd, const char *what) { /** * To ensure we only have each file descriptor once, we remove it then add @@ -105,7 +105,7 @@ static void addFd(struct Sockets* sockets, curl_socket_t fd, const char *what) static int curlSocketCallback(CURL *easy, curl_socket_t s, int action, void *userp, void *socketp) { - struct ReadWriteSockets* sockets = userp; + struct ReadWriteSockets *sockets = userp; (void)easy; /* unused */ (void)socketp; /* unused */ @@ -129,7 +129,7 @@ static int curlSocketCallback(CURL *easy, curl_socket_t s, int action, */ static int curlTimerCallback(CURLM *multi, long timeout_ms, void *userp) { - struct timeval* timeout = userp; + struct timeval *timeout = userp; (void)multi; /* unused */ if(timeout_ms != -1) { @@ -169,7 +169,7 @@ static int checkForCompletion(CURLM *curl, int *success) return result; } -static int getMicroSecondTimeout(struct timeval* timeout) +static int getMicroSecondTimeout(struct timeval *timeout) { struct timeval now; ssize_t result; @@ -185,7 +185,7 @@ static int getMicroSecondTimeout(struct timeval* timeout) /** * Update a fd_set with all of the sockets in use. */ -static void updateFdSet(struct Sockets* sockets, fd_set* fdset, +static void updateFdSet(struct Sockets *sockets, fd_set* fdset, curl_socket_t *maxFd) { int i; -- cgit v1.2.3