@@ -264,19 +264,19 @@ void fsck_set_msg_types(struct fsck_options *options, const char *values)
free(to_free);
}
-static void append_msg_id(struct strbuf *sb, enum fsck_msg_id id)
+static void append_msg_id(struct strbuf *sb, enum fsck_msg_id msg_id)
{
- const char *msg_id = msg_id_info[id].id_string;
+ const char *msg_id_str = msg_id_info[msg_id].id_string;
for (;;) {
- char c = *(msg_id)++;
+ char c = *(msg_id_str)++;
if (!c)
break;
if (c != '_')
strbuf_addch(sb, tolower(c));
else {
- assert(*msg_id);
- strbuf_addch(sb, *(msg_id)++);
+ assert(*msg_id_str);
+ strbuf_addch(sb, *(msg_id_str)++);
}
}
@@ -292,11 +292,11 @@ static int object_on_skiplist(struct fsck_options *opts,
__attribute__((format (printf, 5, 6)))
static int report(struct fsck_options *options,
const struct object_id *oid, enum object_type object_type,
- enum fsck_msg_id id, const char *fmt, ...)
+ enum fsck_msg_id msg_id, const char *fmt, ...)
{
va_list ap;
struct strbuf sb = STRBUF_INIT;
- int msg_type = fsck_msg_type(id, options), result;
+ int msg_type = fsck_msg_type(msg_id, options), result;
if (msg_type == FSCK_IGNORE)
return 0;
@@ -309,7 +309,7 @@ static int report(struct fsck_options *options,
else if (msg_type == FSCK_INFO)
msg_type = FSCK_WARN;
- append_msg_id(&sb, id);
+ append_msg_id(&sb, msg_id);
va_start(ap, fmt);
strbuf_vaddf(&sb, fmt, ap);
Rename the remaining variables of type fsck_msg_id from "id" to "msg_id". This change is relatively small, and is worth the churn for a later change where we have different id's in the "report" function. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> --- fsck.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)