[FASTFAT]
[reactos.git] / reactos / drivers / filesystems / fastfat / string.c
index e6fe6e5..7e05d00 100644 (file)
@@ -17,7 +17,8 @@
 const WCHAR *long_illegals = L"\"*\\<>/?:|";
 
 BOOLEAN
-vfatIsLongIllegal(WCHAR c)
+vfatIsLongIllegal(
+    WCHAR c)
 {
-  return wcschr(long_illegals, c) ? TRUE : FALSE;
+    return wcschr(long_illegals, c) ? TRUE : FALSE;
 }