summaryrefslogtreecommitdiff
path: root/src/sys/sysinfo.rs
diff options
context:
space:
mode:
authorRyan Zoeller <rtzoeller@rtzoeller.com>2021-05-13 23:37:16 -0500
committerRyan Zoeller <rtzoeller@rtzoeller.com>2021-05-13 23:37:16 -0500
commitb39dbdd982c9998b9a6b5fc188875a149eb0b170 (patch)
tree544124f2d24abffb791c615417da4b840f0d3cf1 /src/sys/sysinfo.rs
parentb535457f225a928ec4243addd6c25c500dc99578 (diff)
downloadnix-b39dbdd982c9998b9a6b5fc188875a149eb0b170.zip
Use https instead of http
Diffstat (limited to 'src/sys/sysinfo.rs')
-rw-r--r--src/sys/sysinfo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/sysinfo.rs b/src/sys/sysinfo.rs
index 222a2fc0..dc943c1a 100644
--- a/src/sys/sysinfo.rs
+++ b/src/sys/sysinfo.rs
@@ -71,7 +71,7 @@ impl SysInfo {
/// Returns system information.
///
-/// [See `sysinfo(2)`](http://man7.org/linux/man-pages/man2/sysinfo.2.html).
+/// [See `sysinfo(2)`](https://man7.org/linux/man-pages/man2/sysinfo.2.html).
pub fn sysinfo() -> Result<SysInfo> {
let mut info = mem::MaybeUninit::uninit();
let res = unsafe { libc::sysinfo(info.as_mut_ptr()) };