summaryrefslogtreecommitdiffstats
path: root/src/gui_mac.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-05-19 21:00:46 +0000
committerBram Moolenaar <Bram@vim.org>2005-05-19 21:00:46 +0000
commit051b782fa0ed834d7b4f80e5f1540d4d96e5f9d7 (patch)
treeeadaef546274775aaa08c66865db80b33e98abdb /src/gui_mac.c
parent9c13b359b496c5268702776105a9f87b269e84f3 (diff)
updated for version 7.0073
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r--src/gui_mac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c
index e9a44b35d7..fbf9b30b7c 100644
--- a/src/gui_mac.c
+++ b/src/gui_mac.c
@@ -1644,7 +1644,7 @@ GetFontPanelSelection(char_u* outName)
/* Only encode font size, because style (bold, italic, etc) is
* already part of the font full name */
- snprintf(styleString, FONT_STYLE_BUFFER_SIZE, ":h%d",
+ vim_snprintf(styleString, FONT_STYLE_BUFFER_SIZE, ":h%d",
gFontPanelInfo.size/*,
((gFontPanelInfo.style & bold)!=0 ? ":b" : ""),
((gFontPanelInfo.style & italic)!=0 ? ":i" : ""),