@@ -1084,7 +1084,7 @@ public NtStatus GetDiskFreeSpace(out long freeBytesAvailable, out long totalNumb
10841084 totalNumberOfFreeBytes = FileSystem . AvailableSpace ;
10851085 }
10861086
1087- return Trace ( nameof ( GetDiskFreeSpace ) , null as string , info , DokanResult . Success , freeBytesAvailable ,
1087+ return Trace ( nameof ( GetDiskFreeSpace ) , null , info , DokanResult . Success , freeBytesAvailable ,
10881088 totalNumberOfBytes , totalNumberOfFreeBytes ) ;
10891089 }
10901090
@@ -1152,7 +1152,7 @@ public NtStatus GetVolumeInformation(NativeMemory<char> volumeLabel, out FileSys
11521152 volumeSerialNumber = dfs . VolumeId ;
11531153 }
11541154
1155- return Trace ( nameof ( GetVolumeInformation ) , null as string , info , DokanResult . Success , volumeLabel ,
1155+ return Trace ( nameof ( GetVolumeInformation ) , null , info , DokanResult . Success , volumeLabel ,
11561156 features , fileSystemName ) ;
11571157 }
11581158
@@ -1243,9 +1243,9 @@ public NtStatus SetFileSecurity(ReadOnlyNativeMemory<char> fileNamePtr, FileSyst
12431243 }
12441244 }
12451245
1246- public NtStatus Mounted ( ReadOnlyNativeMemory < char > mountPoint , ref DokanFileInfo info ) => Trace ( nameof ( Mounted ) , null as string , info , DokanResult . Success ) ;
1246+ public NtStatus Mounted ( ReadOnlyNativeMemory < char > mountPoint , ref DokanFileInfo info ) => Trace ( nameof ( Mounted ) , null , info , DokanResult . Success ) ;
12471247
1248- public NtStatus Unmounted ( ref DokanFileInfo info ) => Trace ( nameof ( Unmounted ) , null as string , info , DokanResult . Success ) ;
1248+ public NtStatus Unmounted ( ref DokanFileInfo info ) => Trace ( nameof ( Unmounted ) , null , info , DokanResult . Success ) ;
12491249
12501250 public NtStatus FindStreams ( ReadOnlyNativeMemory < char > fileNamePtr , out IEnumerable < FindFileInformation > streams , ref DokanFileInfo info )
12511251 {
0 commit comments