- fix typo

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@266 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Diane Bruce 2006-09-01 03:22:02 +00:00
parent ba8ee7f386
commit f968c99d1f
1 changed files with 2 additions and 2 deletions

View File

@ -123,10 +123,10 @@ start_threads_(int *ndevin, int *ndevout, short y1[], short y2[],
return(-1);
}
} else {
data.fd_out = open(devin_name, O_WRONLY, 0);
data.fd_out = open(devout_name, O_WRONLY, 0);
if(data.fd_out < 0) {
fprintf(stderr, "Cannot open %s for input.\n", devout_name);
fprintf(stderr, "Cannot open %s for output.\n", devout_name);
return (-1);
}
}