summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/ekhtml/src/ekhtml_special.c
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-06-20 21:06:11 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-06-20 21:06:11 +0000
commitd995703cfd255f9da09ed9a9373a61685b51eb7b (patch)
treecb4e811f8dbe4bc4a5e2e78f1387b8f042405cb9 /plugins/MirOTR/ekhtml/src/ekhtml_special.c
parente0f46c2d5689121e4ef533617940fea85a6910c3 (diff)
fully compiled version
git-svn-id: http://svn.miranda-ng.org/main/trunk@504 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/ekhtml/src/ekhtml_special.c')
-rw-r--r--plugins/MirOTR/ekhtml/src/ekhtml_special.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MirOTR/ekhtml/src/ekhtml_special.c b/plugins/MirOTR/ekhtml/src/ekhtml_special.c
index b29e6422cd..f43a62dac4 100644
--- a/plugins/MirOTR/ekhtml/src/ekhtml_special.c
+++ b/plugins/MirOTR/ekhtml/src/ekhtml_special.c
@@ -41,13 +41,13 @@ char *ekhtml_parse_special(ekhtml_parser_t *parser, void **state_data,
assert(*curp == '<' && *(curp + 1) == '!');
- if (*state_data == NULL){/* Only called the first time the tag is started */
+ if(*state_data == NULL){/* Only called the first time the tag is started */
*offset = 2;
*state_data = (void *)1; /* Assign it any non-NULL value */
}
for(workp=curp + *offset;workp != endp; workp++)
- if (*workp == '<' || *workp == '>')
+ if(*workp == '<' || *workp == '>')
break;
if(workp == endp){
@@ -65,7 +65,7 @@ char *ekhtml_parse_special(ekhtml_parser_t *parser, void **state_data,
}
*state_data = NULL;
- if (*workp == '<') /* Malformed HTML */
+ if(*workp == '<') /* Malformed HTML */
return (char *)workp;
else
return (char *)workp + 1;