diff options
Diffstat (limited to 'mount/sundries.c')
-rw-r--r-- | mount/sundries.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mount/sundries.c b/mount/sundries.c index 4cf30899..7190aca8 100644 --- a/mount/sundries.c +++ b/mount/sundries.c @@ -115,8 +115,8 @@ error (const char *fmt, ...) { } /* Fatal error. Print message and exit. */ - __attribute__ ((noreturn)) void -die(int err, const char *fmt, ...) { +void __attribute__ ((noreturn)) die(int err, const char *fmt, ...) +{ va_list args; va_start(args, fmt); |