updated for version 7.0073
diff --git a/src/if_ruby.c b/src/if_ruby.c
index 9ef504c..112b91e 100644
--- a/src/if_ruby.c
+++ b/src/if_ruby.c
@@ -474,7 +474,7 @@
char *p;
epath = rb_class_path(eclass);
- snprintf(buff, BUFSIZ, "%s: %s",
+ vim_snprintf(buff, BUFSIZ, "%s: %s",
RSTRING(epath)->ptr, RSTRING(einfo)->ptr);
p = strchr(buff, '\n');
if (p) *p = '\0';
@@ -482,7 +482,7 @@
}
break;
default:
- snprintf(buff, BUFSIZ, _("E273: unknown longjmp status %d"), state);
+ vim_snprintf(buff, BUFSIZ, _("E273: unknown longjmp status %d"), state);
EMSG(buff);
break;
}