aboutsummaryrefslogtreecommitdiff
path: root/games/openbor
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2019-08-11 22:36:31 +0000
committerJan Beich <jbeich@FreeBSD.org>2019-08-11 22:36:31 +0000
commite0da2001627b2563da6fa86b4e95fdc8f0940f5f (patch)
tree42af34abbde4e20568ac7c4ecdf9cb0cfc5e0c6a /games/openbor
parentd5b69a491e9f52617277749c9d86cf259e6e5158 (diff)
downloadports-e0da2001627b2563da6fa86b4e95fdc8f0940f5f.tar.gz
ports-e0da2001627b2563da6fa86b4e95fdc8f0940f5f.zip
games/openbor: untabify after r508689
Notes
Notes: svn path=/head/; revision=508692
Diffstat (limited to 'games/openbor')
-rw-r--r--games/openbor/files/patch-source_ramlib_ram.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/openbor/files/patch-source_ramlib_ram.c b/games/openbor/files/patch-source_ramlib_ram.c
index 9b5896dc1539..f37ceae0bb48 100644
--- a/games/openbor/files/patch-source_ramlib_ram.c
+++ b/games/openbor/files/patch-source_ramlib_ram.c
@@ -60,7 +60,7 @@ Implement Linux-like memory stats for BSDs
+ return 0;
+ }
+ return (u64)(vms.v_free_count + vms.v_inactive_count
-+ + vms.v_cache_count) * getpagesize() / byte_size;
++ + vms.v_cache_count) * getpagesize() / byte_size;
+#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ u_int v_free_count = 0, v_inactive_count = 0, v_cache_count = 0;
+ size_t sz = sizeof(u_int);
@@ -71,7 +71,7 @@ Implement Linux-like memory stats for BSDs
+ sysctlbyname("vm.stats.vm.v_cache_count",
+ &v_cache_count, &sz, NULL, 0);
+ return (u64)(v_free_count + v_inactive_count
-+ + v_cache_count) * getpagesize() / byte_size;
++ + v_cache_count) * getpagesize() / byte_size;
+#elif defined(__NetBSD__) || defined(__OpenBSD__)
+# if defined(__NetBSD__)
+#undef VM_UVMEXP
@@ -93,7 +93,7 @@ Implement Linux-like memory stats for BSDs
+ return 0;
+ }
+ return (u64)(uvmexp.free + uvmexp.inactive + uvmexp.filepages
-+ + uvmexp.execpages) * uvmexp.pagesize / byte_size;
++ + uvmexp.execpages) * uvmexp.pagesize / byte_size;
#elif LINUX
struct sysinfo info;
sysinfo(&info);