From 6d2e4dea109ec5a499d11a4fee4f8ca3465ad30c Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sun, 24 Jun 2018 22:45:07 -0400 Subject: [PATCH] Utilize type param in method invocation. --- src/rust/protover/ffi.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/rust/protover/ffi.rs b/src/rust/protover/ffi.rs index ba156cb1ba..40a7354cbf 100644 --- a/src/rust/protover/ffi.rs +++ b/src/rust/protover/ffi.rs @@ -129,10 +129,7 @@ pub extern "C" fn protover_contains_long_protocol_names_( Err(_) => return 1 }; - let protocol_entry : Result = - protocol_list.parse(); - - match protocol_entry { + match protocol_list.parse::() { Ok(_) => 0, Err(_) => 1, }