Rev 3343 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3343 | Rev 3397 | ||
---|---|---|---|
Line 46... | Line 46... | ||
46 | int ret; |
46 | int ret; |
47 | va_list args; |
47 | va_list args; |
48 | 48 | ||
49 | va_start(args, fmt); |
49 | va_start(args, fmt); |
50 | ret = vsprintf(str, fmt, args); |
50 | ret = vsprintf(str, fmt, args); |
51 | - | ||
52 | va_end(args); |
51 | va_end(args); |
53 | 52 | ||
54 | return ret; |
53 | return ret; |
55 | } |
54 | } |
56 | 55 |