Add a return value to the default case in create_bitmap to satisfy VC++

This commit is contained in:
Aric Stewart 2012-04-16 11:47:25 -05:00 committed by Alon Levy
parent 39fef7a5da
commit 7814bdf71d

View File

@ -564,7 +564,7 @@ static uint8_t *create_bitmap(HBITMAP *bitmap, HBITMAP *prev_bitmap, HDC *dc,
break;
default:
spice_warn_if_reached();
return;
return NULL;
}
if (bitmap_data) {