diff options
Diffstat (limited to 'object/simple.c')
-rw-r--r-- | object/simple.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/object/simple.c b/object/simple.c index aa736b8e..629fdf85 100644 --- a/object/simple.c +++ b/object/simple.c @@ -189,7 +189,7 @@ fz_toname(fz_obj *obj) { if (fz_isname(obj)) return obj->u.n; - return nil; + return ""; } char * @@ -197,7 +197,7 @@ fz_tostringbuf(fz_obj *obj) { if (fz_isstring(obj)) return obj->u.s.buf; - return nil; + return ""; } int |