Commit 47dbd1cd authored by Markus Elfring's avatar Markus Elfring Committed by John Johansen

apparmorfs: Use seq_putc() in two functions

Two single characters (line breaks) should be put into a sequence.
Thus use the corresponding function "seq_putc".

This issue was detected by using the Coccinelle software.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarJohn Johansen <john.johansen@canonical.com>
parent 0ff3d97f
...@@ -494,7 +494,7 @@ static int aa_fs_seq_hash_show(struct seq_file *seq, void *v) ...@@ -494,7 +494,7 @@ static int aa_fs_seq_hash_show(struct seq_file *seq, void *v)
if (profile->hash) { if (profile->hash) {
for (i = 0; i < size; i++) for (i = 0; i < size; i++)
seq_printf(seq, "%.2x", profile->hash[i]); seq_printf(seq, "%.2x", profile->hash[i]);
seq_puts(seq, "\n"); seq_putc(seq, '\n');
} }
aa_put_profile(profile); aa_put_profile(profile);
...@@ -602,7 +602,7 @@ static int aa_fs_seq_raw_hash_show(struct seq_file *seq, void *v) ...@@ -602,7 +602,7 @@ static int aa_fs_seq_raw_hash_show(struct seq_file *seq, void *v)
if (profile->rawdata->hash) { if (profile->rawdata->hash) {
for (i = 0; i < size; i++) for (i = 0; i < size; i++)
seq_printf(seq, "%.2x", profile->rawdata->hash[i]); seq_printf(seq, "%.2x", profile->rawdata->hash[i]);
seq_puts(seq, "\n"); seq_putc(seq, '\n');
} }
aa_put_profile(profile); aa_put_profile(profile);
......
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