# HG changeset patch # User reynaldo # Date 1242096183 0 # Node ID 3b9429f763e2c6ac50d112001225ab4ee338620a # Parent cada7608488b9e7547a9c48ebd712eb751a2607b Get rid of some more trailing whitespace diff -r cada7608488b -r 3b9429f763e2 subopt-helper.c --- a/subopt-helper.c Tue May 12 02:41:04 2009 +0000 +++ b/subopt-helper.c Tue May 12 02:43:03 2009 +0000 @@ -1,4 +1,4 @@ -/** +/** * \file subopt-helper.c * * \brief Compensates the suboption parsing code duplication a bit. @@ -69,7 +69,7 @@ { 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 @@ { 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 @@ /* 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. */