diff options
author | Jakob Sinclair <[email protected]> | 2016-04-14 18:07:42 +0200 |
---|---|---|
committer | Chad Versace <[email protected]> | 2016-04-26 14:36:29 -0700 |
commit | dda50af9c4716f707fb915e080bfdb53f13588a9 (patch) | |
tree | 160bd5b9e099ce1aec2050b037db1cde8f3b03ea /src/mesa/math | |
parent | e5d027ec7d5f507489c44124e668d788728f25dd (diff) |
mesa: Remove every double semi-colon
Signed-off-by: Jakob Sinclair <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/math')
-rw-r--r-- | src/mesa/math/m_debug_norm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/math/m_debug_norm.c b/src/mesa/math/m_debug_norm.c index 197b43cf2ab..8be07eecbe3 100644 --- a/src/mesa/math/m_debug_norm.c +++ b/src/mesa/math/m_debug_norm.c @@ -172,7 +172,7 @@ static void ref_norm_transform_normalize( const GLmatrix *mat, out[i][0] = out[i][1] = out[i][2] = 0; } } else { - scale = lengths[i];; + scale = lengths[i]; SCALE_SCALAR_3V( out[i], scale, t ); } |