|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT PATCH 1/5] lib/vfscore: tabify fs.h
Signed-off-by: Yuri Volchkov <yuri.volchkov@xxxxxxxxx>
---
lib/vfscore/include/vfscore/fs.h | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/lib/vfscore/include/vfscore/fs.h b/lib/vfscore/include/vfscore/fs.h
index 1bb4e24d..e3bda95b 100644
--- a/lib/vfscore/include/vfscore/fs.h
+++ b/lib/vfscore/include/vfscore/fs.h
@@ -13,16 +13,16 @@
static inline int vfscore_fflags(int oflags)
{
- int rw = oflags & O_ACCMODE;
- oflags &= ~O_ACCMODE;
- return (rw + 1) | oflags;
+ int rw = oflags & O_ACCMODE;
+ oflags &= ~O_ACCMODE;
+ return (rw + 1) | oflags;
}
static inline int vfscore_oflags(int fflags)
{
- int rw = fflags & (FREAD|FWRITE);
- fflags &= ~(FREAD|FWRITE);
- return (rw - 1) | fflags;
+ int rw = fflags & (FREAD|FWRITE);
+ fflags &= ~(FREAD|FWRITE);
+ return (rw - 1) | fflags;
}
#endif /* _VFSCORE_FS_H_ */
--
2.19.2
_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |