diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2018-07-31 11:38:41 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2018-07-31 11:52:48 +1000 |
commit | 9d776b6a0f770cbe045a56141844d0ba393da611 (patch) | |
tree | 8d959b549514e8935b30b84edb75fde8cdace708 /fonttosfnt.h | |
parent | aead36f0be638a572ec97eb5313e45086874a5e6 (diff) |
Constify a few string arguments
Cuts down on compiler warning by at least 64%, what a bargain!
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'fonttosfnt.h')
-rw-r--r-- | fonttosfnt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fonttosfnt.h b/fonttosfnt.h index d6aa004..159535f 100644 --- a/fonttosfnt.h +++ b/fonttosfnt.h @@ -166,10 +166,10 @@ int writeFile(char *filename, FontPtr); #define PROP_INTEGER 2 #define PROP_CARDINAL 3 -char *sprintf_alloc(char *f, ...); -char *vsprintf_alloc(char *f, va_list args); -char *makeUTF16(char *); -unsigned makeName(char*); +char *sprintf_alloc(const char *f, ...); +char *vsprintf_alloc(const char *f, va_list args); +char *makeUTF16(const char *); +unsigned makeName(const char*); int macTime(int *, unsigned *); unsigned faceFoundry(FT_Face); char *faceEncoding(FT_Face); |