fix assorted unused code and wrong format specs found by cppchekc (bug 6716)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -179,8 +179,4 @@ extern int blkid_set_tag(blkid_dev dev, const char *name,
|
||||
extern blkid_dev blkid_new_dev(void);
|
||||
extern void blkid_free_dev(blkid_dev dev);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@@ -115,7 +115,7 @@ int main(int argc, char** argv)
|
||||
argv[0], ret);
|
||||
exit(1);
|
||||
}
|
||||
if ((ret = blkid_probe_all(cache) < 0))
|
||||
if ((ret = blkid_probe_all(cache)) < 0)
|
||||
fprintf(stderr, "error probing devices\n");
|
||||
|
||||
blkid_put_cache(cache);
|
||||
|
@@ -153,7 +153,7 @@ extern int optind;
|
||||
void usage(char *prog)
|
||||
{
|
||||
fprintf(stderr, "Usage: %s [-f blkid_file] [-m debug_mask]\n", prog);
|
||||
fprintf(stderr, "\tList all devices and exit\n", prog);
|
||||
fprintf(stderr, "\tList all devices and exit\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@@ -176,7 +176,7 @@ int main(int argc, char **argv)
|
||||
case 'm':
|
||||
blkid_debug_mask = strtoul (optarg, &tmp, 0);
|
||||
if (*tmp) {
|
||||
fprintf(stderr, "Invalid debug mask: %d\n",
|
||||
fprintf(stderr, "Invalid debug mask: %s\n",
|
||||
optarg);
|
||||
exit(1);
|
||||
}
|
||||
|
@@ -385,7 +385,7 @@ void blkid_read_cache(blkid_cache cache)
|
||||
continue;
|
||||
end = strlen(buf) - 1;
|
||||
/* Continue reading next line if it ends with a backslash */
|
||||
while (buf[end] == '\\' && end < sizeof(buf) - 2 &&
|
||||
while (end < sizeof(buf) - 2 && buf[end] == '\\' &&
|
||||
fgets(buf + end, sizeof(buf) - end, file)) {
|
||||
end = strlen(buf) - 1;
|
||||
lineno++;
|
||||
|
@@ -356,7 +356,7 @@ void usage(char *prog)
|
||||
fprintf(stderr, "Usage: %s [-f blkid_file] [-m debug_mask] device "
|
||||
"[type value]\n",
|
||||
prog);
|
||||
fprintf(stderr, "\tList all tags for a device and exit\n", prog);
|
||||
fprintf(stderr, "\tList all tags for a device and exit\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@@ -382,7 +382,7 @@ int main(int argc, char **argv)
|
||||
case 'm':
|
||||
blkid_debug_mask = strtoul (optarg, &tmp, 0);
|
||||
if (*tmp) {
|
||||
fprintf(stderr, "Invalid debug mask: %d\n",
|
||||
fprintf(stderr, "Invalid debug mask: %s\n",
|
||||
optarg);
|
||||
exit(1);
|
||||
}
|
||||
@@ -407,7 +407,7 @@ int main(int argc, char **argv)
|
||||
|
||||
dev = blkid_get_dev(cache, devname, flags);
|
||||
if (!dev) {
|
||||
fprintf(stderr, "%s: cannot find device in blkid cache\n");
|
||||
fprintf(stderr, "%s: cannot find device in blkid cache\n", devname);
|
||||
exit(1);
|
||||
}
|
||||
if (search_type) {
|
||||
|
@@ -1050,7 +1050,7 @@ static errcode_t ea_refcount_create(int size, ext2_refcount_t *ret)
|
||||
refcount->size = size;
|
||||
bytes = (size_t) (size * sizeof(struct ea_refcount_el));
|
||||
#ifdef DEBUG
|
||||
printf("Refcount allocated %d entries, %d bytes.\n",
|
||||
printf("Refcount allocated %d entries, %lu bytes.\n",
|
||||
refcount->size, bytes);
|
||||
#endif
|
||||
retval = ext2fs_get_mem(bytes, &refcount->list);
|
||||
@@ -3424,7 +3424,7 @@ static void e2fsck_pass1(e2fsck_t ctx)
|
||||
continue;
|
||||
}
|
||||
if ((inode->i_links_count || inode->i_blocks ||
|
||||
inode->i_blocks || inode->i_block[0]) &&
|
||||
inode->i_block[0]) &&
|
||||
fix_problem(ctx, PR_1_JOURNAL_INODE_NOT_CLEAR,
|
||||
&pctx)) {
|
||||
memset(inode, 0, inode_size);
|
||||
@@ -12195,11 +12195,7 @@ static void swap_filesys(e2fsck_t ctx)
|
||||
void *e2fsck_allocate_memory(e2fsck_t ctx, unsigned int size,
|
||||
const char *description)
|
||||
{
|
||||
void *ret;
|
||||
char buf[256];
|
||||
|
||||
ret = xzalloc(size);
|
||||
return ret;
|
||||
return xzalloc(size);
|
||||
}
|
||||
|
||||
static char *string_copy(const char *str, int len)
|
||||
|
@@ -83,7 +83,7 @@ static int calc_reserved_gdt_blocks(ext2_filsys fs)
|
||||
if (rsv_gdb > EXT2_ADDR_PER_BLOCK(sb))
|
||||
rsv_gdb = EXT2_ADDR_PER_BLOCK(sb);
|
||||
#ifdef RES_GDT_DEBUG
|
||||
printf("max_blocks %lu, rsv_groups = %lu, rsv_gdb = %lu\n",
|
||||
printf("max_blocks %lu, rsv_groups = %lu, rsv_gdb = %u\n",
|
||||
max_blocks, rsv_groups, rsv_gdb);
|
||||
#endif
|
||||
|
||||
|
@@ -544,7 +544,7 @@ static errcode_t unix_read_blk(io_channel channel, unsigned long block,
|
||||
/* If it's in the cache, use it! */
|
||||
if ((cache = find_cached_block(data, block, &reuse[0]))) {
|
||||
#ifdef DEBUG
|
||||
printf("Using cached block %d\n", block);
|
||||
printf("Using cached block %lu\n", block);
|
||||
#endif
|
||||
memcpy(cp, cache->buf, channel->block_size);
|
||||
count--;
|
||||
@@ -560,7 +560,7 @@ static errcode_t unix_read_blk(io_channel channel, unsigned long block,
|
||||
if (find_cached_block(data, block+i, &reuse[i]))
|
||||
break;
|
||||
#ifdef DEBUG
|
||||
printf("Reading %d blocks starting at %d\n", i, block);
|
||||
printf("Reading %d blocks starting at %lu\n", i, block);
|
||||
#endif
|
||||
if ((retval = raw_read_blk(channel, data, block, i, cp)))
|
||||
return retval;
|
||||
|
@@ -1239,7 +1239,6 @@ static void PRS(int argc, char **argv)
|
||||
progress_fd = 0;
|
||||
else {
|
||||
goto next_arg;
|
||||
i++;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@@ -385,7 +385,7 @@ static errcode_t zero_blocks(ext2_filsys fs, blk_t blk, int num,
|
||||
struct progress_struct *progress,
|
||||
blk_t *ret_blk, int *ret_count)
|
||||
{
|
||||
int j, count, next_update, next_update_incr;
|
||||
int j, count, next_update;
|
||||
static char *buf;
|
||||
errcode_t retval;
|
||||
|
||||
@@ -403,9 +403,7 @@ static errcode_t zero_blocks(ext2_filsys fs, blk_t blk, int num,
|
||||
}
|
||||
/* OK, do the write loop */
|
||||
next_update = 0;
|
||||
next_update_incr = num / 100;
|
||||
if (next_update_incr < 1)
|
||||
next_update_incr = 1;
|
||||
|
||||
for (j=0; j < num; j += STRIDE_LENGTH, blk += STRIDE_LENGTH) {
|
||||
count = num - j;
|
||||
if (count > STRIDE_LENGTH)
|
||||
|
@@ -117,7 +117,7 @@ void parse_journal_opts(char **journal_device, int *journal_flags,
|
||||
}
|
||||
if (strcmp(token, "device") == 0) {
|
||||
*journal_device = blkid_get_devname(NULL, arg, NULL);
|
||||
if (!journal_device) {
|
||||
if (!*journal_device) {
|
||||
journal_usage++;
|
||||
continue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user