diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-07-21 10:35:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-21 10:35:45 +0200 |
commit | 4b61c8751135c58be043d86b9fef4c8ec7aadf18 (patch) | |
tree | 5a0686acb073a0b21620501c7fcf273b0791883c /src/journal/journal-qrcode.c | |
parent | 52b1478414067eb9381b413408f920da7f162c6f (diff) | |
download | systemd-4b61c8751135c58be043d86b9fef4c8ec7aadf18.tar.gz |
tree-wide: fput[cs]() → fput[cs]_unlocked() wherever that makes sense (#6396)
As a follow-up for db3f45e2d2586d78f942a43e661415bc50716d11 let's do the
same for all other cases where we create a FILE* with local scope and
know that no other threads hence can have access to it.
For most cases this shouldn't change much really, but this should speed
dbus introspection and calender time formatting up a bit.
Diffstat (limited to 'src/journal/journal-qrcode.c')
-rw-r--r-- | src/journal/journal-qrcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journal-qrcode.c b/src/journal/journal-qrcode.c index 5ee10498d1..4e194bd809 100644 --- a/src/journal/journal-qrcode.c +++ b/src/journal/journal-qrcode.c @@ -65,11 +65,11 @@ int print_qr_code( if (!f) return -ENOMEM; - fputs("fss://", f); + fputs_unlocked("fss://", f); for (i = 0; i < seed_size; i++) { if (i > 0 && i % 3 == 0) - fputc('-', f); + fputc_unlocked('-', f); fprintf(f, "%02x", ((uint8_t*) seed)[i]); } |