summaryrefslogtreecommitdiff
path: root/utils/rdfdiff.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2009-11-25 04:38:22 +0000
committerDave Beckett <dave@dajobe.org>2009-11-25 04:38:22 +0000
commitf34cb9993f271e16e4cf0913474fe3bc0f6b94fe (patch)
treee6fbcb3347d9451eae3ba3c3f43757821df133e2 /utils/rdfdiff.c
parent311998323509f33445d4c0dc46cfa36728a0fd93 (diff)
downloadraptor-f34cb9993f271e16e4cf0913474fe3bc0f6b94fe.tar.gz
Merge from raptor branch raptor1
Diffstat (limited to 'utils/rdfdiff.c')
-rw-r--r--utils/rdfdiff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/rdfdiff.c b/utils/rdfdiff.c
index 929a79b0..cccbf218 100644
--- a/utils/rdfdiff.c
+++ b/utils/rdfdiff.c
@@ -453,7 +453,7 @@ rdfdiff_statement_equals(raptor_world *world, const raptor_statement *s1, const
static int
rdfdiff_blank_equals(const rdfdiff_blank *b1, const rdfdiff_blank *b2,
- rdfdiff_file*b1_file, rdfdiff_file*b2_file)
+ rdfdiff_file *b1_file, rdfdiff_file *b2_file)
{
/* first compare "owners". Owners are subject/predicate or arcs
* in. */
@@ -467,14 +467,14 @@ rdfdiff_blank_equals(const rdfdiff_blank *b1, const rdfdiff_blank *b2,
} else if(b1->owner == NULL || b2->owner == NULL) {
equal = 0;
} else if(b1->owner->subject_type != RAPTOR_IDENTIFIER_TYPE_ANONYMOUS &&
- b2->owner->subject_type != RAPTOR_IDENTIFIER_TYPE_ANONYMOUS) {
+ b2->owner->subject_type != RAPTOR_IDENTIFIER_TYPE_ANONYMOUS) {
/* Neither are anonymous. Normal comparison. This will return
* false if both the subject and the predicates don't match. We
* know the objects are blank nodes. */
equal = rdfdiff_statement_equals(b1->world, b1->owner, b2->owner);
} else if(b1->owner->subject_type == RAPTOR_IDENTIFIER_TYPE_ANONYMOUS &&
- b2->owner->subject_type == RAPTOR_IDENTIFIER_TYPE_ANONYMOUS) {
+ b2->owner->subject_type == RAPTOR_IDENTIFIER_TYPE_ANONYMOUS) {
rdfdiff_blank *p1;
rdfdiff_blank *p2;