- ND_PRINT((ndo, "srcrt (len=%d", dp->ip6r_len)); /*)*/
- ND_PRINT((ndo, ", type=%d", dp->ip6r_type));
- ND_PRINT((ndo, ", segleft=%d", dp->ip6r_segleft));
+ len = EXTRACT_U_1(dp->ip6r_len);
+ ND_PRINT((ndo, "srcrt (len=%u", len)); /*)*/
+ type = EXTRACT_U_1(dp->ip6r_type);
+ ND_PRINT((ndo, ", type=%u", type));
+ ND_PRINT((ndo, ", segleft=%u", EXTRACT_U_1(dp->ip6r_segleft)));