tag: rename tag.value() -> tag.as_string()

This commit is contained in:
Daniel Eklöf 2018-11-18 11:02:21 +01:00
parent 12e9304612
commit 44a2dbb201
3 changed files with 10 additions and 10 deletions

View file

@ -146,7 +146,7 @@ instantiate(const struct particle *particle, const struct tag_set *tags)
sbuf_strncat(&formatted, src, begin - src);
/* Copy tag value */
const char *value = tag->value(tag);
const char *value = tag->as_string(tag);
sbuf_strcat(&formatted, value);
/* Skip past tag name + closing '}' */