diff options
author | J. Eric Ivancich <ivancich@redhat.com> | 2022-06-22 00:12:32 +0200 |
---|---|---|
committer | J. Eric Ivancich <ivancich@redhat.com> | 2022-06-22 01:11:24 +0200 |
commit | c396bf1bd08baad6174eaf38bb54a0553f5d76ff (patch) | |
tree | 491c45dadfc347532efb3947df401748bb9b1abf /src/rgw/rgw_request.h | |
parent | Merge pull request #46773 from tchaikov/wip-libpmem (diff) | |
download | ceph-c396bf1bd08baad6174eaf38bb54a0553f5d76ff.tar.xz ceph-c396bf1bd08baad6174eaf38bb54a0553f5d76ff.zip |
rgw: remove unnecessary "struct" from req_state declarations
The "struct" is superfluous and makes it harder for those looking for
the definition.
Signed-off-by: J. Eric Ivancich <ivancich@redhat.com>
Diffstat (limited to 'src/rgw/rgw_request.h')
-rw-r--r-- | src/rgw/rgw_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/rgw_request.h b/src/rgw/rgw_request.h index 8a9005047e8..ed54dca595e 100644 --- a/src/rgw/rgw_request.h +++ b/src/rgw/rgw_request.h @@ -16,7 +16,7 @@ struct RGWRequest { uint64_t id; - struct req_state *s; + req_state *s; RGWOp *op; explicit RGWRequest(uint64_t id) : id(id), s(NULL), op(NULL) {} |