Remove some usize

This commit is contained in:
Steven Fackler 2015-02-05 22:27:40 -08:00
parent 7cfde75dce
commit 54701b81af

View File

@ -456,11 +456,11 @@ impl error::FromError<SslError> for ConnectError {
#[derive(Clone, PartialEq, Eq, Debug)]
pub enum ErrorPosition {
/// A position in the original query
Normal(usize),
Normal(u32),
/// A position in an internally generated query
Internal {
/// The byte position
position: usize,
position: u32,
/// A query generated by the Postgres server
query: String
}