X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=oss_mix.c;h=5182ad238b81f706ebac2f6abdcaec3859b809dc;hp=b67564773af1157c91fccf3b70d3292d9bdd6cee;hb=6bcd10bc4ada11a04bc2b7425afe5a8855592cd2;hpb=00583bed658c70aacf2a94532904fd403c5ee7f1 diff --git a/oss_mix.c b/oss_mix.c index b6756477..5182ad23 100644 --- a/oss_mix.c +++ b/oss_mix.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1998-2012 Andre Noll + * Copyright (C) 1998-2013 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -56,8 +56,10 @@ static int oss_mix_open(const char *dev, struct mixer_handle **handle) dev = "/dev/mixer"; PARA_INFO_LOG("opening %s\n", dev); ret = para_open(dev, O_RDWR, 42); - if (ret < 0) + if (ret < 0) { + PARA_ERROR_LOG("could not open %s\n", dev); return ret; + } h = para_malloc(sizeof(*h)); h->fd = ret; *handle = h;