Commit 8477adef authored by Claes Sjofors's avatar Claes Sjofors

rt_rtt, attribute of type Status wasn't displayed

parent 3201f38d
......@@ -5363,6 +5363,14 @@ static int rtt_print_value(
*(pwr_tSubid *) value_ptr, 1));
break;
}
case pwr_eType_NetStatus:
case pwr_eType_Status:
{
char msg[200];
msg_GetMsg( *(pwr_tStatus *)value_ptr, msg, sizeof(msg));
r_print( "%s", msg);
break;
}
}
}
memcpy( old_value, value_ptr, min(size, 80));
......
Markdown is supported
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