rpc: fix RPC_SIGNATURE_v_s case
parent
3ed96fc62a
commit
d848c6a06a
|
@ -338681,7 +338681,7 @@ char *rpc_full(unsigned id, const char* method, unsigned num_args, char *args[])
|
||||||
case RPC_SIGNATURE_i_s: return va("%d %d", id, (int)(intptr_t)found->function(args[0]) );
|
case RPC_SIGNATURE_i_s: return va("%d %d", id, (int)(intptr_t)found->function(args[0]) );
|
||||||
case RPC_SIGNATURE_s_s: return va("%d %s", id, (char*)found->function(args[0]) );
|
case RPC_SIGNATURE_s_s: return va("%d %s", id, (char*)found->function(args[0]) );
|
||||||
case RPC_SIGNATURE_s_v: return va("%d %s", id, (char*)found->function() );
|
case RPC_SIGNATURE_s_v: return va("%d %s", id, (char*)found->function() );
|
||||||
case RPC_SIGNATURE_v_s: return va("%d", id), found->function(args[0]);
|
case RPC_SIGNATURE_v_s: return found->function(args[0]), va("%d", id);
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,7 +63,7 @@ char *rpc_full(unsigned id, const char* method, unsigned num_args, char *args[])
|
||||||
case RPC_SIGNATURE_i_s: return va("%d %d", id, (int)(intptr_t)found->function(args[0]) );
|
case RPC_SIGNATURE_i_s: return va("%d %d", id, (int)(intptr_t)found->function(args[0]) );
|
||||||
case RPC_SIGNATURE_s_s: return va("%d %s", id, (char*)found->function(args[0]) );
|
case RPC_SIGNATURE_s_s: return va("%d %s", id, (char*)found->function(args[0]) );
|
||||||
case RPC_SIGNATURE_s_v: return va("%d %s", id, (char*)found->function() );
|
case RPC_SIGNATURE_s_v: return va("%d %s", id, (char*)found->function() );
|
||||||
case RPC_SIGNATURE_v_s: return va("%d", id), found->function(args[0]);
|
case RPC_SIGNATURE_v_s: return found->function(args[0]), va("%d", id);
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9589,7 +9589,7 @@ char *rpc_full(unsigned id, const char* method, unsigned num_args, char *args[])
|
||||||
case RPC_SIGNATURE_i_s: return va("%d %d", id, (int)(intptr_t)found->function(args[0]) );
|
case RPC_SIGNATURE_i_s: return va("%d %d", id, (int)(intptr_t)found->function(args[0]) );
|
||||||
case RPC_SIGNATURE_s_s: return va("%d %s", id, (char*)found->function(args[0]) );
|
case RPC_SIGNATURE_s_s: return va("%d %s", id, (char*)found->function(args[0]) );
|
||||||
case RPC_SIGNATURE_s_v: return va("%d %s", id, (char*)found->function() );
|
case RPC_SIGNATURE_s_v: return va("%d %s", id, (char*)found->function() );
|
||||||
case RPC_SIGNATURE_v_s: return va("%d", id), found->function(args[0]);
|
case RPC_SIGNATURE_v_s: return found->function(args[0]), va("%d", id);
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
; this is where you specify and configure the V4K pipeline.
|
; this is where you specify and configure the FWK pipeline.
|
||||||
; tweak the pipeline and add new importers just by editing this file.
|
; tweak the pipeline and add new importers just by editing this file.
|
||||||
; there is no flow control in this script file: lines are parsed and evaluated, from top to bottom.
|
; there is no flow control in this script file: lines are parsed and evaluated, from top to bottom.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue