From: Thomas Gazagnaire Date: Mon, 8 Mar 2010 17:47:55 +0000 (+0000) Subject: [rpc-light] fix a typo in rpc-light; base type is 'float', not 'flaot'. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2d0e137e9e89dabb349e14a9cf5b15a9cf1c208b;p=xcp%2Fxen-api-libs.git [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 --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