From: Takashi Iwai Date: Fri, 21 May 2004 15:10:58 +0000 (+0000) Subject: fixed unneeded cast. X-Git-Tag: v1.0.5~7 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=5a2c2e02952047caa60aeecdf6e92efbb4719263;p=alsa-lib.git fixed unneeded cast. --- 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; }