make_filename: another off-by-one buffer issue

Signed-off-by: Jens Axboe <axboe@fb.com>
diff --git a/init.c b/init.c
index 75b997e..21779c7 100644
--- a/init.c
+++ b/init.c
@@ -942,7 +942,7 @@
 {
 	struct fpre_keyword *f;
 	char copy[PATH_MAX];
-	size_t dst_left = PATH_MAX;
+	size_t dst_left = PATH_MAX - 1;
 
 	if (!o->filename_format || !strlen(o->filename_format)) {
 		sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);