diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-09-04 17:21:40 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-09-04 17:21:40 +0000 |
commit | f28b74e40f9aa877507d25367c98fb8281af58ce (patch) | |
tree | e603bc9aa5723399772dac6611bea62fccf1d637 /x11-servers/Xfstt/files/patch-libfstt::ttf.h | |
parent | Update to Vim 6.2 patchlevel 72 (diff) |
- Update to version 1.6
PR: 56439
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=88560
Diffstat (limited to 'x11-servers/Xfstt/files/patch-libfstt::ttf.h')
-rw-r--r-- | x11-servers/Xfstt/files/patch-libfstt::ttf.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/x11-servers/Xfstt/files/patch-libfstt::ttf.h b/x11-servers/Xfstt/files/patch-libfstt::ttf.h new file mode 100644 index 000000000000..8abc5c2fb420 --- /dev/null +++ b/x11-servers/Xfstt/files/patch-libfstt::ttf.h @@ -0,0 +1,15 @@ +--- libfstt/ttf.h.orig Thu Aug 7 15:20:44 2003 ++++ libfstt/ttf.h Wed Sep 3 08:03:38 2003 +@@ -49,10 +49,10 @@ + #endif + + #ifndef DEBUG +-# define debug(format, ...) ++# define debug(format, ARGS...) + # define STATIC static + #else +-# define debug(format, ...) fprintf(outfile, format, ##__VA_ARGS__) ++# define debug(format, ARGS...) fprintf(outfile, format, ##ARGS) + # define STATIC + #endif + |