Added missing space after comma, according to Google style guidelines "whitespace/comma"
This commit is contained in:
parent
10ced92ec6
commit
d37ff4ff0b
1 changed files with 2 additions and 2 deletions
|
@ -27,9 +27,9 @@
|
|||
|
||||
#ifndef va_copy
|
||||
#ifdef __va_copy
|
||||
#define va_copy(a,b) __va_copy(a,b)
|
||||
#define va_copy(a, b) __va_copy(a, b)
|
||||
#else /* !__va_copy */
|
||||
#define va_copy(a,b) ((a)=(b))
|
||||
#define va_copy(a, b) ((a)=(b))
|
||||
#endif /* __va_copy */
|
||||
#endif /* va_copy */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue