From 2d0e137e9e89dabb349e14a9cf5b15a9cf1c208b Mon Sep 17 00:00:00 2001 From: Thomas Gazagnaire Date: Mon, 8 Mar 2010 17:47:55 +0000 Subject: [PATCH] [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 --- rpc-light/p4_rpc.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc-light/p4_rpc.ml b/rpc-light/p4_rpc.ml index 4d08da0..a057975 100644 --- a/rpc-light/p4_rpc.ml +++ b/rpc-light/p4_rpc.ml @@ -21,7 +21,7 @@ open Syntax 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 -- 2.39.5