summaryrefslogtreecommitdiff
path: root/src/raptor_xml_writer.c
diff options
context:
space:
mode:
authorLauri Aalto <laalto@iki.fi>2010-02-05 12:45:44 +0200
committerLauri Aalto <laalto@iki.fi>2010-02-09 11:20:17 +0200
commitf70f153e099ccc9c0280ae6cbcf771ecae4dfc46 (patch)
tree978ad787fc3f81b193dadb199087c81a65b0417d /src/raptor_xml_writer.c
parent7d2b19e79b87a16fbf929437e7273f88e5230aa4 (diff)
downloadraptor-f70f153e099ccc9c0280ae6cbcf771ecae4dfc46.tar.gz
indent + whitespace
Diffstat (limited to 'src/raptor_xml_writer.c')
-rw-r--r--src/raptor_xml_writer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raptor_xml_writer.c b/src/raptor_xml_writer.c
index 55f2d0e6..f546f3bd 100644
--- a/src/raptor_xml_writer.c
+++ b/src/raptor_xml_writer.c
@@ -60,7 +60,7 @@ typedef enum {
#define XML_WRITER_AUTO_EMPTY(xml_writer) ((xml_writer->flags & XML_WRITER_AUTO_EMPTY) != 0)
#define XML_WRITER_FLUSH_CLOSE_BRACKET(xml_writer) \
- if((xml_writer->flags & XML_WRITER_AUTO_EMPTY) && \
+ if((xml_writer->flags & XML_WRITER_AUTO_EMPTY) && \
xml_writer->current_element && \
!(xml_writer->current_element->content_cdata_seen || \
xml_writer->current_element->content_element_seen)) { \
@@ -915,7 +915,7 @@ raptor_xml_writer_set_option_string(raptor_xml_writer *xml_writer,
if(raptor_option_value_is_numeric(option))
return raptor_xml_writer_set_option(xml_writer, option,
- atoi((const char*)value));
+ atoi((const char*)value));
return -1;
}