storage: Fix build with older compilers afeter gluster snapshot series

In commit e32268184b I accidentally added
twice a typedef for virStorageFileBackend when I moved it between files
across patch iterations. The double declaration breaks build on older
compilers in RHEL5 and FreeBSD.

Remove the spurious definition.
This commit is contained in:
Peter Krempa 2014-02-14 11:46:37 +01:00
parent 3cf074ee40
commit 8d8b32b0da

View File

@ -207,9 +207,6 @@ typedef int
(*virStorageFileBackendStat)(virStorageFilePtr file,
struct stat *st);
typedef struct _virStorageFileBackend virStorageFileBackend;
typedef virStorageFileBackend *virStorageFileBackendPtr;
virStorageFileBackendPtr virStorageFileBackendForType(int type, int protocol);
struct _virStorageFileBackend {