shorter names

This commit is contained in:
Aaron Marcher 2016-09-17 17:06:06 +02:00 committed by Aaron Marcher (drkhsh)
parent 2e012d533e
commit d73118eaa4
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
struct arg {
char *(*func)();
const char *format;
const char *fmt;
const char *args;
};
@ -647,7 +647,7 @@ main(int argc, char *argv[])
} else {
res = argument.func(argument.args);
}
element = smprintf(argument.format, res);
element = smprintf(argument.fmt, res);
if (element == NULL) {
element = smprintf(UNKNOWN_STR);
warnx("Failed to format output");