aboutsummaryrefslogtreecommitdiffstats
path: root/skeletons
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2012-09-04 13:14:03 -0700
committerLev Walkin <vlm@lionet.info>2012-09-04 13:14:03 -0700
commitc9c6f4a7a69f0b494f088199af75f613570bbe0c (patch)
tree79693c956f109a5c0121f118ab1989a956807cff /skeletons
parent69b4f1239dd6e55b571bc099faf103d95406be8d (diff)
indentation
Diffstat (limited to 'skeletons')
-rw-r--r--skeletons/xer_decoder.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/skeletons/xer_decoder.c b/skeletons/xer_decoder.c
index 161dc78c..03cb3975 100644
--- a/skeletons/xer_decoder.c
+++ b/skeletons/xer_decoder.c
@@ -109,7 +109,8 @@ xer_check_tag(const void *buf_ptr, int size, const char *need_tag) {
if(size < 2 || buf[0] != LANGLE || buf[size-1] != RANGLE) {
if(size >= 2)
- ASN_DEBUG("Broken XML tag: \"%c...%c\"", buf[0], buf[size - 1]);
+ ASN_DEBUG("Broken XML tag: \"%c...%c\"",
+ buf[0], buf[size - 1]);
return XCT_BROKEN;
}