]> git.alsa-project.org Git - alsa-lib.git/commitdiff
revert back one diff from changeset 2219 (fix various warnings)
authorJaroslav Kysela <perex@perex.cz>
Fri, 6 Oct 2006 13:22:34 +0000 (15:22 +0200)
committerJaroslav Kysela <perex@perex.cz>
Fri, 6 Oct 2006 13:22:34 +0000 (15:22 +0200)
src/control/control_ext.c

index 3c51cb7ec635145c19d1ec0d8c3777e799413802..bd196bb9c7d635f65c3d44d3594ce293c4b052fc 100644 (file)
@@ -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;