diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-16 11:30:47 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-16 11:30:47 +0100 |
commit | ca96fd52682674ff5366586ee69a88ddfef2271a (patch) | |
tree | b1146da1ef4b64e8cdc6b09fef8eea8a7c7f0a4e /object/simple.c | |
parent | d4de3f89649314eb58f779763ee99b62688ff3ec (diff) | |
download | mupdf-ca96fd52682674ff5366586ee69a88ddfef2271a.tar.xz |
put font encoding tables into their own c-files
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 |