https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=7a43763d24ab693502b0d0b1323d8cba1123e59a
commit 7a43763d24ab693502b0d0b1323d8cba1123e59a Author: Takashi Yano <[email protected]> Date: Tue Sep 5 17:12:59 2023 +0900 Cygwin: dsp: Fix trivial editorial issue. Diff: --- winsup/cygwin/fhandler/dsp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/fhandler/dsp.cc b/winsup/cygwin/fhandler/dsp.cc index 00f2bab69..861443352 100644 --- a/winsup/cygwin/fhandler/dsp.cc +++ b/winsup/cygwin/fhandler/dsp.cc @@ -1029,7 +1029,7 @@ fhandler_dev_dsp::write (const void *ptr, size_t len) void fhandler_dev_dsp::read (void *ptr, size_t& len) { - return base ()->_read (ptr, len); + base ()->_read (ptr, len); } int
