diff options
Diffstat (limited to 'src/writer.c')
-rw-r--r-- | src/writer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/writer.c b/src/writer.c index 372e4279..940b22a0 100644 --- a/src/writer.c +++ b/src/writer.c @@ -923,7 +923,8 @@ write_blank(SerdWriter* const writer, } if ((field == SERD_SUBJECT && (flags & SERD_EMPTY_S)) || - (field == SERD_OBJECT && (flags & SERD_EMPTY_O))) { + (field == SERD_OBJECT && (flags & SERD_EMPTY_O)) || + (field == SERD_GRAPH && (flags & SERD_EMPTY_G))) { return esink("[]", 2, writer); } } |