summaryrefslogtreecommitdiffstats
path: root/gui/skin/cut.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:26:13 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:34:35 +0300
commit0eb321bf2c1cc0e048faff26a01f86cdd3ec254f (patch)
tree71cb9bd9ed121156d3382066c0722c73189afe04 /gui/skin/cut.c
parent6d908205fbadbdf7ccdc6c5e0eb918f0b43f16e0 (diff)
downloadmpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.bz2
mpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.xz
Remove trailing whitespace from most files
Diffstat (limited to 'gui/skin/cut.c')
-rw-r--r--gui/skin/cut.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gui/skin/cut.c b/gui/skin/cut.c
index c0c114ab20..f101b67f94 100644
--- a/gui/skin/cut.c
+++ b/gui/skin/cut.c
@@ -34,14 +34,14 @@ void cutItem( char * in,char * out,char sep,int num )
int cutItemToInt( char * in,char sep,int num )
{
char tmp[512];
- cutItem( in,tmp,sep,num );
+ cutItem( in,tmp,sep,num );
return atoi( tmp );
}
float cutItemToFloat( char * in,char sep,int num )
{
char tmp[512];
- cutItem( in,tmp,sep,num );
+ cutItem( in,tmp,sep,num );
return atof( tmp );
}
@@ -50,4 +50,3 @@ void cutChunk( char * in,char * s1 )
cutItem( in,s1,'=',0 );
memmove( in,strchr( in,'=' )+1,strlen( in ) - strlen( s1 ) );
}
-