Cosmetic changes
[invirt/third/libt4.git] / rpc / rpc.h
index c0f8d43..ddf15f9 100644 (file)
--- a/rpc/rpc.h
+++ b/rpc/rpc.h
@@ -94,12 +94,12 @@ class rpcc : private connection_delegate {
         request dup_req_;
         int xid_rep_done_ = -1;
 
-        int call1(proc_id_t proc, milliseconds to, string & rep, marshall & req);
+        int call_marshalled(proc_id_t proc, milliseconds to, string & rep, marshall & req);
 
         template<class R>
         inline int call_m(proc_id_t proc, milliseconds to, R & r, marshall && req) {
             string rep;
-            int intret = call1(proc, to, rep, req);
+            int intret = call_marshalled(proc, to, rep, req);
             if (intret >= 0)
                 VERIFY(unmarshall(rep, true, r).okdone()); // guaranteed by static type checking
             return intret;