Remove trailing spaces, convert mistakenly put spaces to tabs. The most useful commit ever.

This commit is contained in:
Alibek Omarov
2019-07-19 20:23:08 +03:00
parent 20ecfcd8e0
commit 2f8fec6b70
45 changed files with 102 additions and 102 deletions

View File

@@ -183,8 +183,8 @@ size_t Q_strncpy( char *dst, const char *src, size_t size )
int Q_atoi( const char *str )
{
int val = 0;
int c, sign;
int val = 0;
int c, sign;
if( !str ) return 0;
@@ -361,7 +361,7 @@ int Q_strnicmp( const char *s1, const char *s2, int n )
else if( s2 == NULL )
{
return 1;
}
}
do {
c1 = *s1++;

View File

@@ -133,7 +133,7 @@ void RoundUpHullSize( vec3_t size )
for( i = 0; i < 3; i++)
{
qboolean negative = false;
float result, value;
float result, value;
value = size[i];
if( value < 0.0f ) negative = true;
@@ -142,7 +142,7 @@ void RoundUpHullSize( vec3_t size )
// lookup hull table to find nearest supposed value
for( j = 0; j < NUM_HULL_ROUNDS; j++ )
{
{
if( value > hull_table[j] )
continue; // ceil only