diff options
Diffstat (limited to 'lib/cvtuns.c')
-rw-r--r-- | lib/cvtuns.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/cvtuns.c b/lib/cvtuns.c index a0a686a..b535b34 100644 --- a/lib/cvtuns.c +++ b/lib/cvtuns.c @@ -25,10 +25,11 @@ ** ** NOTE: assumes buf is large enough to hold the resulting string */ -int cvtuns( char *buf, uint32_t value ) { - char *bp = buf; +int cvtuns(char *buf, uint32_t value) +{ + char *bp = buf; - bp = cvtuns0( bp, value ); + bp = cvtuns0(bp, value); *bp = '\0'; return bp - buf; |