We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80a2f9c commit 3d8197eCopy full SHA for 3d8197e
src/unix/linux_like/emscripten/mod.rs
@@ -1696,7 +1696,7 @@ f! {
1696
1697
pub fn major(dev: ::dev_t) -> ::c_uint {
1698
// see
1699
- // https://github.com/kripken/emscripten/blob/
+ // https://github.com/emscripten-core/emscripten/blob/
1700
// master/system/include/libc/sys/sysmacros.h
1701
let mut major = 0;
1702
major |= (dev & 0x00000fff) >> 8;
@@ -1706,7 +1706,7 @@ f! {
1706
1707
pub fn minor(dev: ::dev_t) -> ::c_uint {
1708
1709
1710
1711
let mut minor = 0;
1712
minor |= (dev & 0x000000ff) >> 0;
0 commit comments