summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index bdb3cf1337..9705d7882b 100644
--- a/player/command.c
+++ b/player/command.c
@@ -173,7 +173,7 @@ static int mp_property_playback_speed(void *ctx, struct m_property *prop,
return M_PROPERTY_OK;
}
case M_PROPERTY_PRINT:
- *(char **)arg = talloc_asprintf(NULL, "x %6.2f", orig_speed);
+ *(char **)arg = talloc_asprintf(NULL, "%.2f", orig_speed);
return M_PROPERTY_OK;
}
return mp_property_generic_option(mpctx, prop, action, arg);