mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-12-17 08:56:45 -05:00
Commented SYSERR
This commit is contained in:
parent
86fc7959d2
commit
c4e25bba24
2 changed files with 2 additions and 2 deletions
|
|
@ -149,7 +149,7 @@ int snd_input_stdio_open(snd_input_t **inputp, const char *file)
|
||||||
int err;
|
int err;
|
||||||
FILE *fp = fopen(file, "r");
|
FILE *fp = fopen(file, "r");
|
||||||
if (!fp) {
|
if (!fp) {
|
||||||
SYSERR("fopen");
|
//SYSERR("fopen");
|
||||||
return -errno;
|
return -errno;
|
||||||
}
|
}
|
||||||
err = snd_input_stdio_attach(inputp, fp, 1);
|
err = snd_input_stdio_attach(inputp, fp, 1);
|
||||||
|
|
|
||||||
|
|
@ -148,7 +148,7 @@ int snd_output_stdio_open(snd_output_t **outputp, const char *file)
|
||||||
int err;
|
int err;
|
||||||
FILE *fp = fopen(file, "w");
|
FILE *fp = fopen(file, "w");
|
||||||
if (!fp) {
|
if (!fp) {
|
||||||
SYSERR("fopen");
|
//SYSERR("fopen");
|
||||||
return -errno;
|
return -errno;
|
||||||
}
|
}
|
||||||
err = snd_output_stdio_attach(outputp, fp, 1);
|
err = snd_output_stdio_attach(outputp, fp, 1);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue