commit | 2f8006866565e46d5ffd1226fa5c84aefcc021fa | [log] [tgz] |
---|---|---|
author | Jiayu Liu <jiayu@hey.com> | Mon Oct 16 17:21:47 2023 +0800 |
committer | Jiayu Liu <jiayu@hey.com> | Mon Oct 16 17:21:47 2023 +0800 |
tree | 55ba7bb9aa5d4b058340da1d057ce213e73af912 | |
parent | 9a75a6e4650a30fdc7e7b75905f95f5dd2918157 [diff] |
fix one more dereference
diff --git a/lib/rs/test/src/bin/kitchen_sink_server.rs b/lib/rs/test/src/bin/kitchen_sink_server.rs index f515a5d..6595d63 100644 --- a/lib/rs/test/src/bin/kitchen_sink_server.rs +++ b/lib/rs/test/src/bin/kitchen_sink_server.rs
@@ -117,7 +117,7 @@ // different processor) this isn't possible. // // Since what I'm doing is uncommon I'm just going to duplicate the code - match &*service { + match service { "part" => run_meal_server( socket, r_transport_factory,