summaryrefslogtreecommitdiffstats
path: root/src/generator.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/generator.ml')
-rwxr-xr-xsrc/generator.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/generator.ml b/src/generator.ml
index 25351202..05cfcb44 100755
--- a/src/generator.ml
+++ b/src/generator.ml
@@ -2234,7 +2234,7 @@ check_state (guestfs_h *g, const char *caller)
(* Dispatch the main header and arguments. *)
(match snd style with
| [] ->
- pr " serial = guestfs_send (g, GUESTFS_PROC_%s, NULL, NULL);\n"
+ pr " serial = guestfs__send (g, GUESTFS_PROC_%s, NULL, NULL);\n"
(String.uppercase shortname)
| args ->
List.iter (
@@ -2252,7 +2252,7 @@ check_state (guestfs_h *g, const char *caller)
pr " args.%s = %s;\n" n n
| FileIn _ | FileOut _ -> ()
) args;
- pr " serial = guestfs_send (g, GUESTFS_PROC_%s,\n"
+ pr " serial = guestfs__send (g, GUESTFS_PROC_%s,\n"
(String.uppercase shortname);
pr " (xdrproc_t) xdr_%s_args, (char *) &args);\n"
name;