summaryrefslogtreecommitdiff
path: root/www/firefox52/patches/patch-toolkit_components_osfile_modules_osfile__unix__front.jsm
blob: cc49925fe9d04e57160b6bc426883779d1fdf89b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-toolkit_components_osfile_modules_osfile__unix__front.jsm,v 1.1 2017/04/27 01:55:57 ryoon Exp $

--- toolkit/components/osfile/modules/osfile_unix_front.jsm.orig	2016-05-12 17:13:27.000000000 +0000
+++ toolkit/components/osfile/modules/osfile_unix_front.jsm
@@ -399,7 +399,7 @@
        throw_on_negative("statvfs",  (UnixFile.statvfs || UnixFile.statfs)(sourcePath, fileSystemInfoPtr));
 
        let bytes = new Type.uint64_t.implementation(
-                        fileSystemInfo.f_bsize * fileSystemInfo.f_bavail);
+                        fileSystemInfo.f_frsize * fileSystemInfo.f_bavail);
 
        return bytes.value;
      };