command: drop " %" from "cache" property OSD-formatting

This commit is contained in:
wm4 2014-08-18 01:42:43 +02:00
parent 9f31b73cda
commit 52ead45f05
1 changed files with 1 additions and 1 deletions

View File

@ -1110,7 +1110,7 @@ static int mp_property_cache(void *ctx, struct m_property *prop,
return M_PROPERTY_UNAVAILABLE;
if (action == M_PROPERTY_PRINT) {
*(char **)arg = talloc_asprintf(NULL, "%d %%", (int)cache);
*(char **)arg = talloc_asprintf(NULL, "%d", (int)cache);
return M_PROPERTY_OK;
}