Use xsnprintf.

pull/35/merge
nicm 2015-06-18 23:55:24 +00:00
parent 164ba041c9
commit b43b13faf9
1 changed files with 2 additions and 2 deletions

View File

@ -338,7 +338,7 @@ format_find(struct format_tree *ft, const char *key)
case OPTIONS_STRING: case OPTIONS_STRING:
return (o->str); return (o->str);
case OPTIONS_NUMBER: case OPTIONS_NUMBER:
snprintf(s, sizeof s, "%lld", o->num); xsnprintf(s, sizeof s, "%lld", o->num);
return (s); return (s);
case OPTIONS_STYLE: case OPTIONS_STYLE:
return (style_tostring(&o->style)); return (style_tostring(&o->style));
@ -679,7 +679,7 @@ format_defaults_session(struct format_tree *ft, struct session *s)
RB_FOREACH (wl, winlinks, &s->windows) { RB_FOREACH (wl, winlinks, &s->windows) {
if ((wl->flags & WINLINK_ALERTFLAGS) == 0) if ((wl->flags & WINLINK_ALERTFLAGS) == 0)
continue; continue;
snprintf(tmp, sizeof tmp, "%u", wl->idx); xsnprintf(tmp, sizeof tmp, "%u", wl->idx);
if (*alerts != '\0') if (*alerts != '\0')
strlcat(alerts, ",", sizeof alerts); strlcat(alerts, ",", sizeof alerts);