From: Takashi Sakamoto Date: Sun, 13 Jul 2025 08:57:16 +0000 (+0900) Subject: timer: tick-timer-event: fix method name X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=bd9ab1ff3598387f275adb9b0a39e89628df1401;p=alsa-gobject.git timer: tick-timer-event: fix method name At the previous code change, ALSATimer.TickTimeEvent.get_tick() has been renamed .get_count(), while it has been left as is. This commit fixes the bug. Fixes: 16033c8dbe61 ("timer: tick-time-event: rename boxed structure") Signed-off-by: Takashi Sakamoto --- diff --git a/src/timer/tick-time-event.c b/src/timer/tick-time-event.c index c9a5e46..b9f8500 100644 --- a/src/timer/tick-time-event.c +++ b/src/timer/tick-time-event.c @@ -44,7 +44,7 @@ void alsatimer_tick_time_event_get_resolution(const ALSATimerTickTimeEvent *self * * Get the tick count since the last event. */ -void alsatimer_tick_time_event_get_ticks(const ALSATimerTickTimeEvent *self, guint *count) +void alsatimer_tick_time_event_get_count(const ALSATimerTickTimeEvent *self, guint *count) { *count = self->ticks; }