aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/inode_hash.c1
-rw-r--r--util-linux/swaponoff.c4
2 files changed, 2 insertions, 3 deletions
diff --git a/libbb/inode_hash.c b/libbb/inode_hash.c
index 55a7564ce..0705102b8 100644
--- a/libbb/inode_hash.c
+++ b/libbb/inode_hash.c
@@ -53,7 +53,6 @@ char *is_in_ino_dev_hashtable(const struct stat *statbuf)
53void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) 53void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name)
54{ 54{
55 int i; 55 int i;
56 size_t s;
57 ino_dev_hashtable_bucket_t *bucket; 56 ino_dev_hashtable_bucket_t *bucket;
58 57
59 i = hash_inode(statbuf->st_ino); 58 i = hash_inode(statbuf->st_ino);
diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c
index 3a6afe29e..893003549 100644
--- a/util-linux/swaponoff.c
+++ b/util-linux/swaponoff.c
@@ -18,11 +18,11 @@ static int swap_enable_disable(char *device)
18 18
19 xstat(device, &st); 19 xstat(device, &st);
20 20
21#ifdef BLOAT 21#if ENABLE_DESKTOP
22 /* test for holes */ 22 /* test for holes */
23 if (S_ISREG(st.st_mode)) 23 if (S_ISREG(st.st_mode))
24 if (st.st_blocks * 512 < st.st_size) 24 if (st.st_blocks * 512 < st.st_size)
25 bb_error_msg_and_die("swap file has holes"); 25 bb_error_msg("warning: swap file has holes");
26#endif 26#endif
27 27
28 if (applet_name[5] == 'n') 28 if (applet_name[5] == 'n')