diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-07-08 17:42:58 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-07-08 17:42:58 +0200 |
commit | 7234e675833f26442d4a3a2afaa9dccb682e3b0a (patch) | |
tree | 75f6d95fc7bbe3464c5f47574ab36a7514d0382e /components/entropy.c | |
parent | 0320d850972eb48e05451f41bcc1ecd142b5637b (diff) |
Consistency with 80 char limit and breaks
Diffstat (limited to 'components/entropy.c')
-rw-r--r-- | components/entropy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/entropy.c b/components/entropy.c index caa698e..4033ffd 100644 --- a/components/entropy.c +++ b/components/entropy.c @@ -10,8 +10,8 @@ { uintmax_t num; - if (pscanf("/proc/sys/kernel/random/entropy_avail", - "%ju", &num) != 1) { + if (pscanf("/proc/sys/kernel/random/entropy_avail", "%ju", &num) + != 1) { return NULL; } |