diff --git a/AUTHORS b/AUTHORS index 7a1fb633092d73dde70cc6097c0224699eb015f8..7c2a6c4aac5cb98d505c85909d8b1357fd2b0108 100644 --- a/AUTHORS +++ b/AUTHORS @@ -220,6 +220,7 @@ Patches have also been contributed by: Ansis Atteka Dan Wendlandt Kyle Mestery + Lincoln Myers [....send patches to get your name here....] diff --git a/src/util/virfile.h b/src/util/virfile.h index ec1e90bf65a71abdc0200f7b32eb6130e270dec4..184677c5974eb5ea02e266d9501d4cc5efa6eefa 100644 --- a/src/util/virfile.h +++ b/src/util/virfile.h @@ -58,10 +58,10 @@ typedef virFileWrapperFd *virFileWrapperFdPtr; int virFileDirectFdFlag(void); -enum { +enum virFileWrapperFdFlags { VIR_FILE_WRAPPER_BYPASS_CACHE = (1 << 0), VIR_FILE_WRAPPER_NON_BLOCKING = (1 << 1), -} virFileWrapperFdFlags; +}; virFileWrapperFdPtr virFileWrapperFdNew(int *fd, const char *name,