summaryrefslogtreecommitdiff
path: root/sunrpc
diff options
context:
space:
mode:
authorCollin Funk <collin.funk1@gmail.com>2025-10-29 18:34:45 -0700
committerCollin Funk <collin.funk1@gmail.com>2025-10-30 18:56:58 -0700
commit3fe3f6283302b99b5b2d1615b2a76d20ec791556 (patch)
treef66ca20e99a3602901e974958d7839c8dc4f0095 /sunrpc
parent09a94c86ca30e2ec5c07a23eae0d9855b631de04 (diff)
Cleanup some recently added whitespace.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'sunrpc')
-rw-r--r--sunrpc/svc_unix.c2
-rw-r--r--sunrpc/xdr.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/sunrpc/svc_unix.c b/sunrpc/svc_unix.c
index c8559ea265..e42529700e 100644
--- a/sunrpc/svc_unix.c
+++ b/sunrpc/svc_unix.c
@@ -440,7 +440,7 @@ readunix (char *xprtptr, char *buf, int len)
case -1:
if (errno == EINTR)
continue;
- [[fallthrough]] ;
+ [[fallthrough]];
case 0:
goto fatal_err;
default:
diff --git a/sunrpc/xdr.c b/sunrpc/xdr.c
index e8752a3e52..1d9643afc6 100644
--- a/sunrpc/xdr.c
+++ b/sunrpc/xdr.c
@@ -113,7 +113,7 @@ xdr_int (XDR *xdrs, int *ip)
return FALSE;
}
*ip = (int) l;
- [[fallthrough]] ;
+ [[fallthrough]];
case XDR_FREE:
return TRUE;
}
@@ -153,7 +153,7 @@ xdr_u_int (XDR *xdrs, u_int *up)
return FALSE;
}
*up = (u_int) (u_long) l;
- [[fallthrough]] ;
+ [[fallthrough]];
case XDR_FREE:
return TRUE;
}
@@ -508,7 +508,7 @@ xdr_enum (XDR *xdrs, enum_t *ep)
return FALSE;
}
*ep = l;
- [[fallthrough]] ;
+ [[fallthrough]];
case XDR_FREE:
return TRUE;
@@ -631,7 +631,7 @@ xdr_bytes (XDR *xdrs, char **cpp, u_int *sizep, u_int maxsize)
(void) __fxprintf (NULL, "%s: %s", __func__, _("out of memory\n"));
return FALSE;
}
- [[fallthrough]] ;
+ [[fallthrough]];
case XDR_ENCODE:
return xdr_opaque (xdrs, sp, nodesize);
@@ -752,7 +752,7 @@ xdr_string (XDR *xdrs, char **cpp, u_int maxsize)
{
return TRUE; /* already free */
}
- [[fallthrough]] ;
+ [[fallthrough]];
case XDR_ENCODE:
if (sp == NULL)
return FALSE;
@@ -792,7 +792,7 @@ xdr_string (XDR *xdrs, char **cpp, u_int maxsize)
return FALSE;
}
sp[size] = 0;
- [[fallthrough]] ;
+ [[fallthrough]];
case XDR_ENCODE:
return xdr_opaque (xdrs, sp, size);