From b223fbba233ce6df2e44503cdd9735dc3722c4e7 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Fri, 6 Oct 2006 15:22:34 +0200 Subject: [PATCH] revert back one diff from changeset 2219 (fix various warnings) --- src/control/control_ext.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/control/control_ext.c b/src/control/control_ext.c index 3c51cb7e..bd196bb9 100644 --- a/src/control/control_ext.c +++ b/src/control/control_ext.c @@ -142,9 +142,9 @@ static int snd_ctl_ext_elem_info(snd_ctl_t *handle, snd_ctl_elem_info_t *info) { int64_t xmin, xmax, xstep; ret = ext->callback->get_integer64_info(ext, key, - (int64_t *)&xmin, - (int64_t *)&xmax, - (int64_t *)&xstep); + &xmin, + &xmax, + &xstep); info->value.integer64.min = xmin; info->value.integer64.max = xmax; info->value.integer64.step = xstep; -- 2.47.1