Skip to content

Commit

Permalink
Merge pull request #7 from kzys/avoid-collision
Browse files Browse the repository at this point in the history
Avoid collisions
  • Loading branch information
szymonwieloch authored Jul 17, 2018
2 parents a9adae3 + 272ae9b commit e89b5c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust-dlopen-derive/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ fn field_to_tokens(field: &Field) -> quote::Tokens {
let raw_result = lib.ptr_or_null_cstr::<()>(
::std::ffi::CStr::from_bytes_with_nul_unchecked(concat!(#symbol_name, "\0").as_bytes())
);
dlopen::symbor::FromRawResult::from_raw_result(raw_result)?
::dlopen::symbor::FromRawResult::from_raw_result(raw_result)?
}
}

}
}

0 comments on commit e89b5c2

Please sign in to comment.