mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-12-16 08:56:42 -05:00
snd_seq_timestamp_t->real was renamed to snd_seq_timestamp_t->time
Some code is using real as a variable type.
This commit is contained in:
parent
50b815f16a
commit
70a536e924
5 changed files with 10 additions and 11 deletions
|
|
@ -273,8 +273,8 @@ int decode_event(snd_seq_event_t * ev)
|
|||
break;
|
||||
case SND_SEQ_TIME_STAMP_REAL:
|
||||
printf(", time = %d.%09d",
|
||||
(int)ev->time.real.tv_sec,
|
||||
(int)ev->time.real.tv_nsec);
|
||||
(int)ev->time.time.tv_sec,
|
||||
(int)ev->time.time.tv_nsec);
|
||||
break;
|
||||
}
|
||||
printf("\n%sSource = %d.%d, dest = %d.%d, queue = %d\n",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue