64-bit vars
This commit is contained in:
parent
85c4782e36
commit
a0d4569488
2 changed files with 5 additions and 5 deletions
|
|
@ -254,7 +254,7 @@ api_data_get2(clicon_handle h,
|
||||||
else{
|
else{
|
||||||
if (xpath_vec(xret, "%s", &xvec, &xlen, path) < 0)
|
if (xpath_vec(xret, "%s", &xvec, &xlen, path) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
clicon_debug(1, "%s: xpath:%s xlen:%d", __FUNCTION__, path, xlen);
|
clicon_debug(1, "%s: xpath:%s xlen:%d", __FUNCTION__, path, (int)xlen);
|
||||||
if (use_xml){
|
if (use_xml){
|
||||||
for (i=0; i<xlen; i++){
|
for (i=0; i<xlen; i++){
|
||||||
x = xvec[i];
|
x = xvec[i];
|
||||||
|
|
|
||||||
|
|
@ -317,8 +317,8 @@ event_loop(void)
|
||||||
if (n==0){ /* Timeout */
|
if (n==0){ /* Timeout */
|
||||||
e = ee_timers;
|
e = ee_timers;
|
||||||
ee_timers = ee_timers->e_next;
|
ee_timers = ee_timers->e_next;
|
||||||
clicon_debug(2, "%s timeout: %s[%x]",
|
clicon_debug(2, "%s timeout: %s[%lx]",
|
||||||
__FUNCTION__, e->e_string, (int)e->e_arg);
|
__FUNCTION__, e->e_string, (intptr_t)e->e_arg);
|
||||||
if ((*e->e_fn)(0, e->e_arg) < 0){
|
if ((*e->e_fn)(0, e->e_arg) < 0){
|
||||||
free(e);
|
free(e);
|
||||||
goto err;
|
goto err;
|
||||||
|
|
@ -331,8 +331,8 @@ event_loop(void)
|
||||||
break;
|
break;
|
||||||
e_next = e->e_next;
|
e_next = e->e_next;
|
||||||
if(e->e_type == EVENT_FD && FD_ISSET(e->e_fd, &fdset)){
|
if(e->e_type == EVENT_FD && FD_ISSET(e->e_fd, &fdset)){
|
||||||
clicon_debug(2, "%s: FD_ISSET: %s[%x]",
|
clicon_debug(2, "%s: FD_ISSET: %s[%lx]",
|
||||||
__FUNCTION__, e->e_string, (int)e->e_arg);
|
__FUNCTION__, e->e_string, (intptr_t)e->e_arg);
|
||||||
if ((*e->e_fn)(e->e_fd, e->e_arg) < 0){
|
if ((*e->e_fn)(e->e_fd, e->e_arg) < 0){
|
||||||
clicon_debug(1, "%s Error in: %s", __FUNCTION__, e->e_string);
|
clicon_debug(1, "%s Error in: %s", __FUNCTION__, e->e_string);
|
||||||
goto err;
|
goto err;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue