Skip to content
Snippets Groups Projects
Commit 92c20a98 authored by Claudio Scafuri's avatar Claudio Scafuri :speech_balloon:
Browse files

fixed bug introuced by unsigned int

parent b633d98b
No related branches found
Tags 1.0.2
No related merge requests found
......@@ -105,7 +105,7 @@ bool RPCHandle::connected()
int RPCHandle::split_rpccall(const char *call, char* fam, char *mem, char* act, char* mode)
{
unsigned int i = 0, delim1, delim2, delim3;
int i = 0, delim1, delim2, delim3;
int underline_cnt = 0;
int calllen = strlen(call);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment