| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | util/path: Fix type which is longer than 8 bit for MinGW | Stefan Weil | 2013-10-05 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | While dirent->d_type is 8 bit for most systems, it is 32 bit for MinGW. Reducing it to 8 bit results in a compiler warning because the macro is_dir_maybe compares that 8 bit value with 32 bit constants. Using 'unsigned' instead of 'unsigned char' matches the declaration for MinGW and does not harm the other systems. MinGW-w64 is not affected: it does not declare d_type. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> | ||||
| * | Replace non-portable asprintf by g_strdup_printf | Stefan Weil | 2013-01-19 | 1 | -4/+1![]() |
| | | | | | | | | | g_strdup_printf already handles OOM errors, so some error handling in QEMU code can be removed. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com> | ||||
| * | build: move libqemuutil.a components to util/ | Paolo Bonzini | 2013-01-12 | 1 | -0/+182 |
| Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> | |||||

