diff options
author | Tom Rix <trix@redhat.com> | 2020-11-27 08:05:13 -0800 |
---|---|---|
committer | Tyler Hicks <code@tyhicks.com> | 2021-01-30 17:09:05 +0000 |
commit | d0eb2d867cf3dbba79ef4c678797e6b58638392c (patch) | |
tree | 388fe9087cc6817ef6944cbc582de1ef301d623b /fs/ecryptfs/keystore.c | |
parent | bec4c2968fce2f44ce62d05288a633cd99a722eb (diff) | |
download | lwn-d0eb2d867cf3dbba79ef4c678797e6b58638392c.tar.gz lwn-d0eb2d867cf3dbba79ef4c678797e6b58638392c.zip |
eCryptfs: add a semicolon
Function like macros should have a semicolon.
Signed-off-by: Tom Rix <trix@redhat.com>
[tyhicks: Remove the trailing semicolin from the macro's definition, as
suggested by Joe Perches]
Signed-off-by: Tyler Hicks <code@tyhicks.com>
Diffstat (limited to 'fs/ecryptfs/keystore.c')
-rw-r--r-- | fs/ecryptfs/keystore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index f6a17d259db7..2abd219cfeec 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c @@ -1172,7 +1172,7 @@ decrypt_pki_encrypted_session_key(struct ecryptfs_auth_tok *auth_tok, rc = ecryptfs_cipher_code_to_string(crypt_stat->cipher, cipher_code); if (rc) { ecryptfs_printk(KERN_ERR, "Cipher code [%d] is invalid\n", - cipher_code) + cipher_code); goto out; } crypt_stat->flags |= ECRYPTFS_KEY_VALID; |