summaryrefslogtreecommitdiff
path: root/src/io.c
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2013-11-22 09:44:28 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2013-11-22 10:14:27 +0100
commitce4ac96276d480cdb61f0771c11a7637622458b4 (patch)
tree4b8591d51d4b7a3034a91770b07e634389423572 /src/io.c
parent082293c5df0c99970e28330492cc4d30b0c629c8 (diff)
downloadcmumble-ce4ac96276d480cdb61f0771c11a7637622458b4.tar.gz
cmumble-ce4ac96276d480cdb61f0771c11a7637622458b4.tar.bz2
cmumble-ce4ac96276d480cdb61f0771c11a7637622458b4.zip
Coding style fixes
* remove trailing whitespace * inline where fit for 80 columns
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io.c b/src/io.c
index c915202..379e48f 100644
--- a/src/io.c
+++ b/src/io.c
@@ -67,7 +67,7 @@ static char *
skip_whitespace(char *text)
{
int i;
-
+
for (i = 0; text[i] != '\0'; ++i) {
if (text[i] != ' ')
return &text[i];
@@ -92,7 +92,7 @@ static char *
skip_non_whitespace(char *text, char delimiter)
{
int i;
-
+
for (i = 0; text[i] != '\0'; ++i) {
if (text[i] == delimiter && !is_escaped(text, i, '\\'))
return &text[i];