View | Details | Raw Unified | Return to bug 264669 | Differences between
and this patch

Collapse All | Expand All

(-)src/mem_freebsd.c (-1 / +2 lines)
Lines 10-15 Link Here
10
#include "config.h"
10
#include "config.h"
11
#endif
11
#endif
12
12
13
#include <sys/types.h>
13
#include <stdio.h>
14
#include <stdio.h>
14
#include <stdlib.h>
15
#include <stdlib.h>
15
#include <string.h>
16
#include <string.h>
Lines 81-87 Link Here
81
	if (swap_firsttime ||
82
	if (swap_firsttime ||
82
	    (((new_swappgsin > swappgsin) || (new_swappgsout > swappgsout))
83
	    (((new_swappgsin > swappgsin) || (new_swappgsout > swappgsout))
83
	     && cur_time > last_time_swap + 1)) {
84
	     && cur_time > last_time_swap + 1)) {
84
		int mib[2], n;
85
		int mib[3], n;
85
		size_t mibsize, size;
86
		size_t mibsize, size;
86
		struct xswdev xsw;
87
		struct xswdev xsw;
87
88

Return to bug 264669