Skip to content

Commit b89de82

Browse files
committed
fixed the :: issue
CoAuthored by : Bradley Landherr <https://github.com/landhb>
1 parent 4db2303 commit b89de82

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/unix/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,12 +258,12 @@ cfg_if! {
258258
if #[cfg(feature = "extra_traits")] {
259259
impl PartialEq for __c_anonymous_sigaction_handler {
260260
fn eq(&self, other: &__c_anonymous_sigaction_handler) -> bool {
261-
unsafe{ self.default == other.default };
261+
unsafe{ self.default == other.default }
262262
}
263263
}
264264
impl Eq for __c_anonymous_sigaction_handler{}
265265
impl fmt::Debug for __c_anonymous_sigaction_handler {
266-
fn fmt(&self, f: &mut fmt::Formatter) -> ::fmt::Result
266+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result
267267
{
268268
f.debug_struct("sigaction_t")
269269
.field("value", unsafe{ &self.default })

0 commit comments

Comments
 (0)