wdvi

network DVI viewer
Log | Files | Refs

commit 5657394867f65f2985875a41a5ef79b0e24447a4
parent 6b2bdc04bdb95c14c8dbdd91b25a30c9e598dd67
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Mon, 13 Sep 2021 15:25:50 +0000

remove extra parenthesis in format

Diffstat:
Mpopups.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/popups.c b/popups.c @@ -107,7 +107,7 @@ vmprintf(format, args) char *result; if (vasprintf(&result, format, args) < 0) - errx(1, "vasprintf failed with format '%s').", format); + errx(1, "vasprintf failed with format '%s'.", format); return result; }