summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhimajin100000 <himajin100000@gmail.com>2019-04-08 16:19:36 +0900
committerhimajin100000 <himajin100000@gmail.com>2019-04-08 23:48:33 +0900
commit97c9a620ae5828af639f57319eea8e10d84af0ed (patch)
tree950313b366dc8f7a2a17bc777d44c94b202952f4
parenteb61e5a2247af04c581a52b38bbec0b822171fbe (diff)
downloadraptor-97c9a620ae5828af639f57319eea8e10d84af0ed.tar.gz
Documentation says "0 on failure." At least size_t >= 0
-rw-r--r--src/turtle_common.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/turtle_common.c b/src/turtle_common.c
index f721516c..a75f3059 100644
--- a/src/turtle_common.c
+++ b/src/turtle_common.c
@@ -236,7 +236,7 @@ raptor_turtle_expand_qname_escapes(unsigned char *name,
unsigned char *d;
if(!name)
- return -1;
+ return 0;
for(s = name, d = name, i = 0; i < len; s++, i++) {
unsigned char c=*s;
@@ -271,7 +271,7 @@ raptor_turtle_expand_qname_escapes(unsigned char *name,
if(i+ulen > len) {
error_handler(error_data,
"Turtle name error - \\%c over end of line", c);
- return 1;
+ return 0;
}
for(ii = 0; ii < ulen; ii++) {
@@ -280,7 +280,7 @@ raptor_turtle_expand_qname_escapes(unsigned char *name,
error_handler(error_data,
"Turtle name error - illegal hex digit %c in Unicode escape '%c%s...'",
cc, c, s);
- return 1;
+ return 0;
}
}
@@ -289,7 +289,7 @@ raptor_turtle_expand_qname_escapes(unsigned char *name,
error_handler(error_data,
"Turtle name error - illegal Uncode escape '%c%s...'",
c, s);
- return 1;
+ return 0;
}
s+= ulen-1;
@@ -299,7 +299,7 @@ raptor_turtle_expand_qname_escapes(unsigned char *name,
error_handler(error_data,
"Turtle name error - illegal Unicode character with code point #x%lX (max #x%lX).",
unichar, raptor_unicode_max_codepoint);
- return 1;
+ return 0;
}
unichar_width = raptor_unicode_utf8_string_put_char(unichar, d,
@@ -308,7 +308,7 @@ raptor_turtle_expand_qname_escapes(unsigned char *name,
error_handler(error_data,
"Turtle name error - illegal Unicode character with code point #x%lX.",
unichar);
- return 1;
+ return 0;
}
d += (size_t)unichar_width;