1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
--- disktool.c.orig 1998-04-17 15:32:43.000000000 -0700
+++ disktool.c 2013-09-17 09:15:50.943959620 -0700
@@ -168,9 +168,9 @@
}
/* ==========================================================================*/
-long kbytes(blocks, blocksize)
- long blocks;
- long blocksize;
+int64_t kbytes(blocks, blocksize)
+ int64_t blocks;
+ uint64_t blocksize;
{
/* Return number of kilobytes given the number of blocks and the block size.
This isn't quite trivial because a 32 bit signed long integer could easily
@@ -361,7 +361,7 @@
Panel_item item;
Event *event;
{
- return;
+ return 0;
}
/* ========================================================================*/
@@ -376,7 +376,7 @@
timer.it_interval.tv_sec = xv_get(inc_item, PANEL_VALUE);
notify_set_itimer_func(frame, get_values,
ITIMER_REAL, &timer, NULL);
- return;
+ return 0;
}
/* ========================================================================*/
int
@@ -397,7 +397,7 @@
xv_get(thresh_item, PANEL_VALUE)/1000, NULL);
xv_set(thresh_item, PANEL_MAX_VALUE, 3000, NULL);
}
- return;
+ return 0;
}
/* ========================================================================*/
@@ -488,7 +488,7 @@
thresh[curr_item] = xv_get(thresh_item, PANEL_VALUE);
get_values();
reposition_widgets();
- return;
+ return 0;
}
/* ========================================================================*/
@@ -507,7 +507,7 @@
}
get_values();
reposition_widgets();
- return;
+ return 0;
}
/* ========================================================================*/
@@ -517,7 +517,7 @@
int value;
Event *event;
{
- return;
+ return 0;
}
/* ========================================================================*/
|