fix: correct redox-ioctl patch path in Cargo.toml

The [patch] section pointed to ../../relibc/source/redox-ioctl which
doesn't exist. Fixed to ../relibc/redox-ioctl matching the main
dependency path at line 114.
This commit is contained in:
Red Bear OS
2026-07-12 02:23:20 +03:00
parent b59dffc0ff
commit f2092fa973
+1 -1
View File
@@ -153,4 +153,4 @@ libredox = { path = "../libredox" }
redox-scheme = { path = "../redox-scheme" }
[patch."https://gitlab.redox-os.org/redox-os/relibc.git"]
redox-ioctl = { path = "../../relibc/source/redox-ioctl" }
redox-ioctl = { path = "../relibc/redox-ioctl" }