From 5a2c2e02952047caa60aeecdf6e92efbb4719263 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Fri, 21 May 2004 15:10:58 +0000 Subject: [PATCH] fixed unneeded cast. --- src/pcm/pcm_multi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pcm/pcm_multi.c b/src/pcm/pcm_multi.c index ea5b0633..b23b2861 100644 --- a/src/pcm/pcm_multi.c +++ b/src/pcm/pcm_multi.c @@ -893,7 +893,7 @@ int _snd_pcm_multi_open(snd_pcm_t **pcmp, const char *name, continue; } if (strcmp(id, "master") == 0) { - if (snd_config_get_integer(n, &((long)master_slave)) < 0) { + if (snd_config_get_integer(n, &master_slave) < 0) { SNDERR("Invalid type for %s", id); return -EINVAL; } -- 2.47.1