summaryrefslogtreecommitdiff
path: root/aplay/aplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'aplay/aplay.c')
-rw-r--r--aplay/aplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aplay/aplay.c b/aplay/aplay.c
index 69e8bda..33a8ed5 100644
--- a/aplay/aplay.c
+++ b/aplay/aplay.c
@@ -1509,7 +1509,7 @@ static void xrun(void)
timermsub(&now, &tstamp, &diff);
fprintf(stderr, _("%s!!! (at least %.3f ms long)\n"),
stream == SND_PCM_STREAM_PLAYBACK ? _("underrun") : _("overrun"),
- diff.tv_sec * 1000 + diff.tv_nsec / 10000000.0);
+ diff.tv_sec * 1000 + diff.tv_nsec / 1000000.0);
#else
fprintf(stderr, "%s !!!\n", _("underrun"));
#endif