# HG changeset patch # User Thomas Gazagnaire [rpc-light] fix a typo in rpc-light; base type is 'float', not 'flaot'. Thanks to Marcus Granado to have spotten this one. Signed-off-by: Thomas Gazagnaire diff -r 75e9680796f6 rpc-light/p4_rpc.ml --- a/rpc-light/p4_rpc.ml Mon Feb 01 14:30:22 2010 +0000 +++ b/rpc-light/p4_rpc.ml Wed Feb 03 15:43:12 2010 +0000 @@ -21,7 +21,7 @@ let is_base = function - | "int64" | "int32" | "int" | "flaot" | "string" | "unit" -> true + | "int64" | "int32" | "int" | "float" | "string" | "unit" -> true | _ -> false let rpc_of n = "rpc_of_" ^ n