diff options
Diffstat (limited to 'src/read_ntriples.c')
-rw-r--r-- | src/read_ntriples.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/read_ntriples.c b/src/read_ntriples.c index 0d5dba2a..aa8f5468 100644 --- a/src/read_ntriples.c +++ b/src/read_ntriples.c @@ -256,7 +256,7 @@ read_STRING_LITERAL(SerdReader* const reader, static SerdStatus adjust_blank_id(SerdReader* const reader, char* const buf) { - if (!(reader->flags & SERD_READ_EXACT_BLANKS) && + if (!(reader->flags & SERD_READ_VERBATIM) && is_digit(buf[reader->bprefix_len + 1])) { const char tag = buf[reader->bprefix_len]; if (tag == 'b') { |