summaryrefslogtreecommitdiff
path: root/xkbprint.c
diff options
context:
space:
mode:
Diffstat (limited to 'xkbprint.c')
-rw-r--r--xkbprint.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/xkbprint.c b/xkbprint.c
index 41ebec3..fe2219d 100644
--- a/xkbprint.c
+++ b/xkbprint.c
@@ -26,6 +26,10 @@
********************************************************/
/* $XFree86: xc/programs/xkbprint/xkbprint.c,v 3.10 2003/05/27 22:27:07 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <stdio.h>
#include <ctype.h>
#include <X11/Xlocale.h>
@@ -421,8 +425,7 @@ parseArgs(int argc, char *argv[])
FILE *file = NULL;
if (outputFile == NULL) {
- outputFile = malloc(strlen(outputFont) + 5);
- sprintf(outputFile, "%s.pfa", outputFont);
+ asprintf(&outputFile, "%s.pfa", outputFont);
}
else if (uStringEqual(outputFile, "-"))
file = stdout;