diff options
| author | Elliott Hughes <enh@google.com> | 2014-02-12 01:35:04 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-02-12 01:35:04 +0000 |
| commit | 022885e2fad5ef9643e05d80c6f50a2a90bf3431 (patch) | |
| tree | 5ea47b891e7b65d94af4bd558d2a1817247e74de /linker/linker_debug.h | |
| parent | 577fce0108feda58296beacfbc0ada4a6d6afbc2 (diff) | |
| parent | faf05bacd45719291b371f24b1b89543881b37f6 (diff) | |
| download | bionic-022885e2fad5ef9643e05d80c6f50a2a90bf3431.zip bionic-022885e2fad5ef9643e05d80c6f50a2a90bf3431.tar.gz bionic-022885e2fad5ef9643e05d80c6f50a2a90bf3431.tar.bz2 | |
Merge "Clean up all the lint cpplint can find in the dynamic linker."
Diffstat (limited to 'linker/linker_debug.h')
| -rw-r--r-- | linker/linker_debug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linker/linker_debug.h b/linker/linker_debug.h index 2bf6cec..7a5821a 100644 --- a/linker/linker_debug.h +++ b/linker/linker_debug.h @@ -58,12 +58,12 @@ __LIBC_HIDDEN__ extern int gLdDebugVerbosity; #if LINKER_DEBUG_TO_LOG -#define _PRINTVF(v,x...) \ +#define _PRINTVF(v, x...) \ do { \ - if (gLdDebugVerbosity > (v)) __libc_format_log(5-(v),"linker",x); \ + if (gLdDebugVerbosity > (v)) __libc_format_log(5-(v), "linker", x); \ } while (0) #else /* !LINKER_DEBUG_TO_LOG */ -#define _PRINTVF(v,x...) \ +#define _PRINTVF(v, x...) \ do { \ if (gLdDebugVerbosity > (v)) { __libc_format_fd(1, x); write(1, "\n", 1); } \ } while (0) @@ -79,6 +79,6 @@ __LIBC_HIDDEN__ extern int gLdDebugVerbosity; #define DEBUG(x...) do {} while (0) #endif /* TRACE_DEBUG */ -#define TRACE_TYPE(t,x...) do { if (DO_TRACE_##t) { TRACE(x); } } while (0) +#define TRACE_TYPE(t, x...) do { if (DO_TRACE_##t) { TRACE(x); } } while (0) #endif /* _LINKER_DEBUG_H_ */ |
