WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-api

[Xen-API] [PATCH] [rpc-light] fix a typo in rpc-light; base type is 'flo

To: xen-api@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-API] [PATCH] [rpc-light] fix a typo in rpc-light; base type is 'float', not 'flaot'.
From: Thomas Gazagnaire <thomas.gazagnaire@xxxxxxxxxx>
Date: Thu, 18 Feb 2010 13:28:33 +0000
Delivery-date: Thu, 18 Feb 2010 05:30:44 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-post: <mailto:xen-api@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>, <mailto:xen-api-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>, <mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-api-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Thomas Gazagnaire <thomas.gazagnaire@xxxxxxxxxx>
[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 <thomas.gazagnaire@xxxxxxxxxx>

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

Attachment: api-libs-fix-typo-in-rpc-light
Description: Text document

_______________________________________________
xen-api mailing list
xen-api@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/mailman/listinfo/xen-api
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-API] [PATCH] [rpc-light] fix a typo in rpc-light; base type is 'float', not 'flaot'., Thomas Gazagnaire <=