diff options
| author | bors <bors@rust-lang.org> | 2014-05-10 09:56:34 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-10 09:56:34 -0700 |
| commit | 1001635dc1be7ee7c42800e7e2e537a811280c8a (patch) | |
| tree | d29a4504c7cb986152674b27a57529e8ebe431d9 /src/libstd/rt | |
| parent | e850316408bbe6254305cf4aa7c65381dc475192 (diff) | |
| parent | 3f5e3af8387deb68e116228562062384d4b9cf65 (diff) | |
| download | rust-1001635dc1be7ee7c42800e7e2e537a811280c8a.tar.gz rust-1001635dc1be7ee7c42800e7e2e537a811280c8a.zip | |
auto merge of #14073 : alexcrichton/rust/snapshots, r=huonw
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/thread.rs b/src/libstd/rt/thread.rs index bc9a0b3460a..89d44473a94 100644 --- a/src/libstd/rt/thread.rs +++ b/src/libstd/rt/thread.rs @@ -294,7 +294,7 @@ mod imp { #[cfg(target_os = "linux")] fn min_stack_size(attr: *libc::pthread_attr_t) -> libc::size_t { use ptr::RawPtr; - type F = extern "C" unsafe fn(*libc::pthread_attr_t) -> libc::size_t; + type F = unsafe extern "C" fn(*libc::pthread_attr_t) -> libc::size_t; extern { #[linkage = "extern_weak"] static __pthread_get_minstack: *(); |
