slstatus

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.beauhilton.com/slstatus.git
Log | Files | Refs | README | LICENSE

commit d73118eaa47a9c4ea9ac9860b3d8b6e4c7c388dc
parent 2e012d533e49c55c79f808fa213e91d15fb64568
Author: Aaron Marcher <info@nulltime.net>
Date:   Sat, 17 Sep 2016 17:06:06 +0200

shorter names

Diffstat:
Mslstatus.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/slstatus.c b/slstatus.c @@ -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");