diff options
-rw-r--r-- | about.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/about.c b/about.c index 6e84629..ed3673c 100644 --- a/about.c +++ b/about.c @@ -1937,7 +1937,7 @@ startpage_add(const char *fmt, ...) return; va_start(ap, fmt); - if (msg = g_strdup_vprintf(fmt, ap) == NULL) + if ((msg = g_strdup_vprintf(fmt, ap)) == NULL) errx(1, "startpage_add failed"); va_end(ap); |