diff options
| author | isaki <isaki@NetBSD.org> | 2007-11-24 13:20:53 +0000 |
|---|---|---|
| committer | isaki <isaki@NetBSD.org> | 2007-11-24 13:20:53 +0000 |
| commit | 1c038e6834cae6806ebb97ae00a41d67e4d72ae1 (patch) | |
| tree | eab430c54f7ca1bc68225b960a8f82356c93bf2f /sys/lib/libsa/sprintf.c | |
| parent | 9ce1f92af748ec8139d3601fdf3b136b600eb57f (diff) | |
style, indent, and ANSI-fy.
Diffstat (limited to 'sys/lib/libsa/sprintf.c')
| -rw-r--r-- | sys/lib/libsa/sprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/sprintf.c b/sys/lib/libsa/sprintf.c index 5e344625f70..35ecb5f199f 100644 --- a/sys/lib/libsa/sprintf.c +++ b/sys/lib/libsa/sprintf.c @@ -1,4 +1,4 @@ -/* $NetBSD: sprintf.c,v 1.3 2005/12/11 12:24:46 christos Exp $ */ +/* $NetBSD: sprintf.c,v 1.4 2007/11/24 13:20:57 isaki Exp $ */ /*- * Copyright (c) 1993 @@ -59,5 +59,5 @@ sprintf(buf, fmt, va_alist) #endif len = vsnprintf(buf, -(size_t)buf, fmt, ap); va_end(ap); - return (len); + return len; } |
