Home
last modified time | relevance | path

Searched refs:ovflow (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/cmd/audio/utilities/
H A Dhdr_misc.c125 unsigned ovflow; in audio_secs_to_str() local
160 ovflow = ((unsigned)sec) / 60; in audio_secs_to_str()
161 sec -= (double)(ovflow * 60); in audio_secs_to_str()
162 hours = (ovflow >= 60); in audio_secs_to_str()
165 (void) sprintf(p, "%d:", ovflow / 60); in audio_secs_to_str()
167 ovflow %= 60; in audio_secs_to_str()
170 (void) sprintf(p, "%0*d:", (hours ? 2 : 1), ovflow); in audio_secs_to_str()