From 76c311c44ab684dca1ac0834f3afe40188ef8812 Mon Sep 17 00:00:00 2001 From: Marcus Haehnel Date: Tue, 20 Feb 2024 09:39:28 +0100 Subject: 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. --- libc/unistd/sysconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/unistd') 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); -- cgit v1.2.3