summaryrefslogtreecommitdiff
path: root/strerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'strerror.c')
-rw-r--r--strerror.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strerror.c b/strerror.c
index 93cc02b9a3..34dcad88bb 100644
--- a/strerror.c
+++ b/strerror.c
@@ -35,7 +35,7 @@ strerror(int errnum)
static char errbuf[5+1+11+1]; /* "Error %d" */
if (errnum < 0 || errnum >= sys_nerr) {
- sprintf(errbuf, "Error %d", errnum);
+ g_snprintf(errbuf, 18, "Error %d", errnum);
return errbuf;
} else
return sys_errlist[errnum];