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: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: John Johansen <john.johansen@canonical.com>
        if (profile->hash) {
                for (i = 0; i < size; i++)
                        seq_printf(seq, "%.2x", profile->hash[i]);
-               seq_puts(seq, "\n");
+               seq_putc(seq, '\n');
        }
        aa_put_profile(profile);
 
        if (profile->rawdata->hash) {
                for (i = 0; i < size; i++)
                        seq_printf(seq, "%.2x", profile->rawdata->hash[i]);
-               seq_puts(seq, "\n");
+               seq_putc(seq, '\n');
        }
        aa_put_profile(profile);