aboutsummaryrefslogtreecommitdiff
path: root/src/sysinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysinfo.c')
-rw-r--r--src/sysinfo.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sysinfo.c b/src/sysinfo.c
index 0a91eca..bb7f20d 100644
--- a/src/sysinfo.c
+++ b/src/sysinfo.c
@@ -7,7 +7,6 @@ void get_os(system_info_t *info) {
if (uname(&u) == 0) {
size_t length = printf("OS: %s %s %s %s\n", u.sysname, u.release, u.version, u.machine);
- printf("line length: %ld\n", length);
} else {
perror("Error while accessing uname");
return;