1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: drop duplicate const usage

const char == const char const.
This commit is contained in:
Zdenek Kabelac 2014-09-22 15:51:49 +02:00
parent f809fa5a78
commit 3cef6dd721

View File

@ -460,9 +460,9 @@ static int _blkid_wipe(blkid_probe probe, struct device *dev, const char *name,
uint32_t types_to_exclude, uint32_t types_no_prompt, uint32_t types_to_exclude, uint32_t types_no_prompt,
int yes, force_t force) int yes, force_t force)
{ {
static const char const _msg_failed_offset[] = "Failed to get offset of the %s signature on %s."; static const char _msg_failed_offset[] = "Failed to get offset of the %s signature on %s.";
static const char const _msg_failed_length[] = "Failed to get length of the %s signature on %s."; static const char _msg_failed_length[] = "Failed to get length of the %s signature on %s.";
static const char const _msg_wiping[] = "Wiping %s signature on %s."; static const char _msg_wiping[] = "Wiping %s signature on %s.";
const char *offset = NULL, *type = NULL, *magic = NULL, const char *offset = NULL, *type = NULL, *magic = NULL,
*usage = NULL, *label = NULL, *uuid = NULL; *usage = NULL, *label = NULL, *uuid = NULL;
loff_t offset_value; loff_t offset_value;