qcowXGetBackingStore(char **res,
int *format,
const char *buf,
- size_t buf_size,
- bool isQCow2 ATTRIBUTE_UNUSED)
+ size_t buf_size)
{
unsigned long long offset;
unsigned int size;
const char *buf,
size_t buf_size)
{
- return qcowXGetBackingStore(res, format, buf, buf_size, false);
+ return qcowXGetBackingStore(res, format, buf, buf_size);
}
static int
const char *buf,
size_t buf_size)
{
- return qcowXGetBackingStore(res, format, buf, buf_size, true);
+ return qcowXGetBackingStore(res, format, buf, buf_size);
}