summaryrefslogtreecommitdiff
path: root/src/console/dlt-passive-node-ctrl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/console/dlt-passive-node-ctrl.c')
-rw-r--r--src/console/dlt-passive-node-ctrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console/dlt-passive-node-ctrl.c b/src/console/dlt-passive-node-ctrl.c
index c3a7172..6a02667 100644
--- a/src/console/dlt-passive-node-ctrl.c
+++ b/src/console/dlt-passive-node-ctrl.c
@@ -344,7 +344,7 @@ static int parse_args(int argc, char *argv[])
state = (int)strtol(optarg, NULL, 10);
if ((state == DLT_NODE_CONNECT) || (state == DLT_NODE_DISCONNECT)) {
- set_connection_state(state);
+ set_connection_state((unsigned int) state);
set_command(DLT_SERVICE_ID_PASSIVE_NODE_CONNECT);
}
else {
@@ -363,7 +363,7 @@ static int parse_args(int argc, char *argv[])
set_command(DLT_SERVICE_ID_PASSIVE_NODE_CONNECTION_STATUS);
break;
case 't':
- set_timeout(strtol(optarg, NULL, 10));
+ set_timeout((int) strtol(optarg, NULL, 10));
break;
case 'v':
set_verbosity(1);