Skip to content

Commit

Permalink
Fix ErrorKind::Uninitialized
Browse files Browse the repository at this point in the history
  • Loading branch information
tailhook committed Jul 5, 2018
1 parent fe6a6fc commit 10755b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/daemon/query/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ enum ErrorKind {
Serialize,
Deserialize,
Internal,
Unitialized,
Uninitialized,
Other(String)
}

Expand Down Expand Up @@ -103,6 +103,7 @@ mod serde {
"Serialize" => Serialize,
"Deserialize" => Deserialize,
"Internal" => Internal,
"Uninitialized" => Uninitialized,
_ => Other(s),
})
}
Expand Down

0 comments on commit 10755b1

Please sign in to comment.