about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-06-04 21:31:15 +0200
committerGitHub <noreply@github.com>2020-06-04 21:31:15 +0200
commitb584687f4f8fb209ceb85134a7f97b414a0f8e5d (patch)
tree4c3bcfc931edb9ff311efb72d0b1e5d659dae477
parent6ab084c9b0edc92e0ed9a8a2508a879e5b70d41d (diff)
parentd0ee0dc9de343aad61ea6272c91f0c99a738052f (diff)
downloadrust-b584687f4f8fb209ceb85134a7f97b414a0f8e5d.tar.gz
rust-b584687f4f8fb209ceb85134a7f97b414a0f8e5d.zip
Rollup merge of #72971 - androm3da:fixes_00, r=Dylan-DPC
Hexagon libstd: fix typo for c_ulonglong
-rw-r--r--src/libstd/os/linux/raw.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/os/linux/raw.rs b/src/libstd/os/linux/raw.rs
index 0caec97bb7b..eb8589eb58f 100644
--- a/src/libstd/os/linux/raw.rs
+++ b/src/libstd/os/linux/raw.rs
@@ -170,7 +170,7 @@ mod arch {
 
 #[cfg(target_arch = "hexagon")]
 mod arch {
-    use crate::os::raw::{c_int, c_long, c_longlong, culonglong};
+    use crate::os::raw::{c_int, c_long, c_longlong, c_ulonglong};
 
     #[stable(feature = "raw_ext", since = "1.1.0")]
     pub type blkcnt_t = c_longlong;