Skip to content

Commit 3d8197e

Browse files
committed
Update links
1 parent 80a2f9c commit 3d8197e

File tree

1 file changed

+2
-2
lines changed
  • src/unix/linux_like/emscripten

1 file changed

+2
-2
lines changed

src/unix/linux_like/emscripten/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1696,7 +1696,7 @@ f! {
16961696

16971697
pub fn major(dev: ::dev_t) -> ::c_uint {
16981698
// see
1699-
// https://github.com/kripken/emscripten/blob/
1699+
// https://github.com/emscripten-core/emscripten/blob/
17001700
// master/system/include/libc/sys/sysmacros.h
17011701
let mut major = 0;
17021702
major |= (dev & 0x00000fff) >> 8;
@@ -1706,7 +1706,7 @@ f! {
17061706

17071707
pub fn minor(dev: ::dev_t) -> ::c_uint {
17081708
// see
1709-
// https://github.com/kripken/emscripten/blob/
1709+
// https://github.com/emscripten-core/emscripten/blob/
17101710
// master/system/include/libc/sys/sysmacros.h
17111711
let mut minor = 0;
17121712
minor |= (dev & 0x000000ff) >> 0;

0 commit comments

Comments
 (0)