瀏覽代碼

* Added typecast within FSTypeToString to avoid problems when compiling
with range checks enabled

sg 21 年之前
父節點
當前提交
5dbbf8adac
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/extra/unixutil/unixutils.pp

+ 1 - 1
packages/extra/unixutil/unixutils.pp

@@ -562,7 +562,7 @@ end;
 Function  FSTypeToString(FSType : Integer) : String;
 
 begin
-  Case FStype of
+  Case LongWord(FStype) of
     $ADFF : Result:='affs';
     $137D : Result:='ext';
     $EF51,$EF53 : Result:='ext2';