summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-12 02:43:03 +0000
committerreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-12 02:43:03 +0000
commit0e5e94beba9edc8fd51a46e7f0eef9a7df48e7e5 (patch)
tree493a18011d52d0564d33351e63607026666c4051
parent6d781a3226585c26b3b9b6086c21477f75b62f9f (diff)
downloadmpv-0e5e94beba9edc8fd51a46e7f0eef9a7df48e7e5.tar.bz2
mpv-0e5e94beba9edc8fd51a46e7f0eef9a7df48e7e5.tar.xz
Get rid of some more trailing whitespace
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29294 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--subopt-helper.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/subopt-helper.c b/subopt-helper.c
index 6f4bcf6a30..50283cfbf3 100644
--- a/subopt-helper.c
+++ b/subopt-helper.c
@@ -1,4 +1,4 @@
-/**
+/**
* \file subopt-helper.c
*
* \brief Compensates the suboption parsing code duplication a bit.
@@ -69,7 +69,7 @@ int subopt_parse( char const * const str, const opt_t * opts )
{
char * delim, * arg_delim;
- /* search nearest delimiter ( option or argument delimiter ) */
+ /* search nearest delimiter ( option or argument delimiter ) */
delim = strchr( &str[parse_pos], ':' );
arg_delim = strchr( &str[parse_pos], '=' );
@@ -78,7 +78,7 @@ int subopt_parse( char const * const str, const opt_t * opts )
{
delim = strchr( &str[parse_pos], '=' );
}
-
+
substr_len = delim ? // is a delim present
delim - &str[parse_pos] : // yes
strlen( &str[parse_pos] ); // no, end of string
@@ -204,7 +204,7 @@ else if ( substr_len == opt_len+2 )
/* break out of the loop, if this subopt is processed */
if ( next ) { break; }
}
-
+
/* if we had a valid suboption the current pos should *
* equal the delimiter char, which should be ':' for *
* suboptions. */