summaryrefslogtreecommitdiff
path: root/sys/lib/libsa/snprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/lib/libsa/snprintf.c')
-rw-r--r--sys/lib/libsa/snprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/snprintf.c b/sys/lib/libsa/snprintf.c
index 2c52c2df8dc..383a831f0a4 100644
--- a/sys/lib/libsa/snprintf.c
+++ b/sys/lib/libsa/snprintf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: snprintf.c,v 1.3 2005/12/11 12:24:46 christos Exp $ */
+/* $NetBSD: snprintf.c,v 1.4 2007/11/24 13:20:57 isaki Exp $ */
/*-
* Copyright (c) 1993
@@ -60,5 +60,5 @@ snprintf(buf, size, fmt, va_alist)
#endif
len = vsnprintf(buf, size, fmt, ap);
va_end(ap);
- return (len);
+ return len;
}