Skip to content

Commit

Permalink
stream: fix typo in variable name
Browse files Browse the repository at this point in the history
fixes build with WITH_TRACE=2
  • Loading branch information
i-rinat committed Mar 15, 2017
1 parent 945b769 commit cef97e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apulse-stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ do_connect_pcm(pa_stream *s, snd_pcm_stream_t stream_direction)
}

trace_info_f("%s: requested period size of %d frames, got %d frames for %s\n", __func__,
(int)requested_period_size, (int)period_size_in, device_description);
(int)requested_period_size, (int)period_size, device_description);

snd_pcm_uframes_t requested_buffer_size = s->buffer_attr.tlength / frame_size;
snd_pcm_uframes_t buffer_size = requested_buffer_size;
Expand Down

0 comments on commit cef97e9

Please sign in to comment.