diff options
author | Marcus Haehnel <marcus.haehnel@kernkonzept.com> | 2024-02-20 09:39:28 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-20 19:37:24 +0100 |
commit | 76c311c44ab684dca1ac0834f3afe40188ef8812 (patch) | |
tree | d402353ee21c9d4b7d69a35492eeadd352604c2c /libc/unistd | |
parent | 8fa5437044b7ebc6971f987644d48507e0fbc5f9 (diff) |
Remove duplicate semicolons
While they are not a problem per-se they cause issues with some tooling
(such as clang coverage) and are confusing to the reader.
Diffstat (limited to 'libc/unistd')
-rw-r--r-- | libc/unistd/sysconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/unistd/sysconf.c b/libc/unistd/sysconf.c index 172794e9c..d04705abb 100644 --- a/libc/unistd/sysconf.c +++ b/libc/unistd/sysconf.c @@ -46,7 +46,7 @@ long int get_phys_pages(void) { struct sysinfo si; - int ps = getpagesize();; + int ps = getpagesize(); sysinfo(&si); @@ -59,7 +59,7 @@ long int get_phys_pages(void) long int get_avphys_pages(void) { struct sysinfo si; - int ps = getpagesize();; + int ps = getpagesize(); sysinfo(&si); |