mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-29 13:01:52 -06:00
Fix GCC 4 signedness warning
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5533 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2bd7318c1a
commit
4761a48bcd
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ static void tcp_wait_for_connect(void *opaque)
|
||||||
{
|
{
|
||||||
FdMigrationState *s = opaque;
|
FdMigrationState *s = opaque;
|
||||||
int val, ret;
|
int val, ret;
|
||||||
int valsize = sizeof(val);
|
socklen_t valsize = sizeof(val);
|
||||||
|
|
||||||
dprintf("connect completed\n");
|
dprintf("connect completed\n");
|
||||||
do {
|
do {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue