Skip to content

Commit

Permalink
Merge pull request xapi-project#6 from jonludlam/great_stringext_rename
Browse files Browse the repository at this point in the history
s/Stringext/Xstringext/g
  • Loading branch information
Jon Ludlam committed May 12, 2014
2 parents d0c3f68 + 8dc6a21 commit 68c033c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/device.ml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*)
open Printf

open Stringext
open Xstringext
open Hashtblext
open Pervasiveext
open Listext
Expand Down
2 changes: 1 addition & 1 deletion src/device_common.ml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* GNU Lesser General Public License for more details.
*)
open Printf
open Stringext
open Xstringext
open Hashtblext
open Pervasiveext

Expand Down
2 changes: 1 addition & 1 deletion src/domain.ml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(** Functions relating to Xen domains *)

open Printf
open Stringext
open Xstringext
open Listext
open Pervasiveext

Expand Down
2 changes: 1 addition & 1 deletion src/hotplug.ml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*)

open Printf
open Stringext
open Xstringext

open Device_common

Expand Down
2 changes: 1 addition & 1 deletion src/memory_breakdown.ml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*)

open Listext
open Stringext
open Xstringext
open Unixext

(** Command-line tool for sampling host and guest memory usage. *)
Expand Down
2 changes: 1 addition & 1 deletion src/xenguestHelper.ml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ let receive_success ?(debug_callback=(fun s -> debug "%s" s)) cnx =
| Error x ->
(* These error strings match those in xenguest_stubs.c *)
begin
match Stringext.String.split ~limit:3 ' ' x with
match Xstringext.String.split ~limit:3 ' ' x with
| [ "hvm_build" ; code; msg ] -> raise (Domain_builder_error ("hvm_build", int_of_string code, msg))
| [ "xc_dom_allocate" ; code; msg ] -> raise (Xc_dom_allocate_failure (int_of_string code, msg))
| [ "xc_dom_linux_build"; code; msg ] -> raise (Xc_dom_linux_build_failure (int_of_string code, msg))
Expand Down
2 changes: 1 addition & 1 deletion src/xenvmlib.ml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

(** xenvm library *)

open Stringext
open Xstringext

type answer = Ok | Error of string | Msg of string | Unknown of string

Expand Down

0 comments on commit 68c033c

Please sign in to comment.