https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=adc7eafa76e719d01823b6c929e468c14075ec95

commit adc7eafa76e719d01823b6c929e468c14075ec95
Author:     Corinna Vinschen <[email protected]>
AuthorDate: Wed Aug 9 18:08:16 2023 +0200
Commit:     Corinna Vinschen <[email protected]>
CommitDate: Wed Aug 9 18:08:45 2023 +0200

    Cygwin: fhandler_base::lseek: fix formatting
    
    Fixes: edfa581d3c5a ("Cygwin: lseek: implement SEEK_DATA and SEEK_HOLE for 
files")
    Signed-off-by: Corinna Vinschen <[email protected]>

Diff:
---
 winsup/cygwin/fhandler/base.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/winsup/cygwin/fhandler/base.cc b/winsup/cygwin/fhandler/base.cc
index d8351d7a642e..3d348b5159a4 100644
--- a/winsup/cygwin/fhandler/base.cc
+++ b/winsup/cygwin/fhandler/base.cc
@@ -1195,7 +1195,7 @@ fhandler_base::lseek (off_t offset, int whence)
               SEEK_HOLE: seek to offset */
            fpi.CurrentByteOffset.QuadPart = (whence == SEEK_DATA)
                                             ? out.FileOffset.QuadPart
-                                                : offset;
+                                            : offset;
          }
       }
       break;

Reply via email to