Commit b8c80ccb authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Minor FlexeLinting

parent df4bbfaf
......@@ -35,8 +35,6 @@
#include "cache_filter.h"
#include "vcli_serve.h"
#include "vct.h"
static unsigned fetchfrag;
/*--------------------------------------------------------------------
......
......@@ -121,7 +121,7 @@ VUS_connect(const char *path, int msec)
if (msec != 0)
(void)VTCP_nonblocking(s);
i = connect(s, (const struct sockaddr *)&uds, sl);
i = connect(s, (const void*)&uds, sl);
if (i == 0)
return (s);
if (errno != EINPROGRESS) {
......
......@@ -262,7 +262,7 @@ xyzzy_dyn_uds__fini(struct xyzzy_debug_dyn_uds **udsp)
free(uds->vcl_name);
AZ(pthread_mutex_destroy(&uds->mtx));
FREE_OBJ(uds);
udsp = NULL;
*udsp = NULL;
}
VCL_BACKEND v_matchproto_(td_debug_dyn_uds_backend)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment