mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-08 00:02:03 -04:00
libpts: Cast first argument for %.*s to int
This commit is contained in:
parent
237bb5d467
commit
f2e6a67ed9
@ -852,7 +852,7 @@ METHOD(attest_db_t, list_devices, void,
|
|||||||
}
|
}
|
||||||
if (ar_id_value.len)
|
if (ar_id_value.len)
|
||||||
{
|
{
|
||||||
printf(" %.*s", ar_id_value.len, ar_id_value.ptr);
|
printf(" %.*s", (int)ar_id_value.len, ar_id_value.ptr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user