diff options
author | Brian Paul <[email protected]> | 2015-02-26 10:03:22 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-26 11:02:14 -0700 |
commit | 164b3cd7577dc6c168eb59003306f241e501da7f (patch) | |
tree | 0c11bdc4fda6dc8aee142a91e94a8729bfacbb21 /src/mesa/state_tracker/st_debug.h | |
parent | 0dc6b7245534ebe44470133945cbb747b92cf073 (diff) |
st/mesa: replace INLINE with inline
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_debug.h')
-rw-r--r-- | src/mesa/state_tracker/st_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_debug.h b/src/mesa/state_tracker/st_debug.h index 49b916fb336..cc81978360c 100644 --- a/src/mesa/state_tracker/st_debug.h +++ b/src/mesa/state_tracker/st_debug.h @@ -58,7 +58,7 @@ extern int ST_DEBUG; void st_debug_init( void ); -static INLINE void +static inline void ST_DBG( unsigned flag, const char *fmt, ... ) { if (ST_DEBUG & flag) |