Update for * -> *const changes

This commit is contained in:
Steven Fackler 2014-06-29 13:42:13 -07:00
parent dba7778721
commit a9ec2a21e6
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ path = "src/lib.rs"
[dependencies.openssl]
git = "https://github.com/sfackler/rust-openssl"
rev = "bfd8fa2d4c494b1dbbaf6a57ee195cd8c8c0ab76"
rev = "8c40c2ef3527fbcf22f11a517422b371b4626852"
[dependencies.phf_mac]

View File

@ -1081,7 +1081,7 @@ impl<'conn> PostgresTransaction<'conn> {
row_limit: i32)
-> PostgresResult<PostgresLazyRows
<'trans, 'stmt>> {
if self.conn as *_ != stmt.conn as *_ {
if self.conn as *const _ != stmt.conn as *const _ {
return Err(PgWrongConnection);
}
check_desync!(self.conn);

@ -1 +1 @@
Subproject commit 5fb236128c4c552ace49c2d1f72a8996ee8d05d6
Subproject commit 8c40c2ef3527fbcf22f11a517422b371b4626852