]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Commented SYSERR
authorAbramo Bagnara <abramo@alsa-project.org>
Wed, 17 Jan 2001 19:04:56 +0000 (19:04 +0000)
committerAbramo Bagnara <abramo@alsa-project.org>
Wed, 17 Jan 2001 19:04:56 +0000 (19:04 +0000)
src/input.c
src/output.c

index 1199b0896a659e48890cbfe87003345e36000dcb..48d81dc46c3991e4cb992564162be5d76209b1d8 100644 (file)
@@ -149,7 +149,7 @@ int snd_input_stdio_open(snd_input_t **inputp, const char *file)
        int err;
        FILE *fp = fopen(file, "r");
        if (!fp) {
-               SYSERR("fopen");
+               //SYSERR("fopen");
                return -errno;
        }
        err = snd_input_stdio_attach(inputp, fp, 1);
index 6634538e7ff2222594f8a7a4aa446ef23b60b724..5637711aa2154d8207bf3d3921b14af83f329cd5 100644 (file)
@@ -148,7 +148,7 @@ int snd_output_stdio_open(snd_output_t **outputp, const char *file)
        int err;
        FILE *fp = fopen(file, "w");
        if (!fp) {
-               SYSERR("fopen");
+               //SYSERR("fopen");
                return -errno;
        }
        err = snd_output_stdio_attach(outputp, fp, 1);