diff options
author | Alexander Aring <aahringo@redhat.com> | 2021-07-16 16:22:36 -0400 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2021-07-19 11:53:43 -0500 |
commit | b892e4792c992a0d5a272c3bdd6155bf772acfa7 (patch) | |
tree | 621296ade125d4c6581497bf75c20b290e454c3a /fs/dlm | |
parent | d921a23f3e1a703875db436cc7cdb4404cf1565f (diff) |
fs: dlm: fix typo in tlv prefix
This patch fixes a small typo in a unused struct field. It should named
be t_pad instead of o_pad. Came over this as I updated wireshark
dissector.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/dlm_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/dlm_internal.h b/fs/dlm/dlm_internal.h index 91d1ca3a121a..5f57538b5d45 100644 --- a/fs/dlm/dlm_internal.h +++ b/fs/dlm/dlm_internal.h @@ -468,7 +468,7 @@ struct dlm_rcom { struct dlm_opt_header { uint16_t t_type; uint16_t t_length; - uint32_t o_pad; + uint32_t t_pad; /* need to be 8 byte aligned */ char t_value[]; }; |