mirror of https://github.com/encounter/SDL.git
remove unnecessary parentheses from SDL_abs()
This commit is contained in:
parent
6cbee0634e
commit
6407d4b0a8
|
@ -499,7 +499,7 @@ int SDL_abs(int x)
|
||||||
#if defined(HAVE_ABS)
|
#if defined(HAVE_ABS)
|
||||||
return abs(x);
|
return abs(x);
|
||||||
#else
|
#else
|
||||||
return ((x) < 0 ? -(x) : (x));
|
return (x < 0) ? -x : x;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue