From 1c0f02f3687054859c100a661cacfac883e4044d Mon Sep 17 00:00:00 2001 From: Matthias Rauter Date: Thu, 8 May 2025 10:48:51 +0200 Subject: [PATCH] Remove U+00A0 character from file QtCreator automatically removed this symbol when saving the file, polluting my patch. Therefore I put it into its own patch. As a driveby, I remove another space at the end of the line. Pick-to: 6.9 6.8 Change-Id: I407f9ebe5fb6c8bfa0285c0fcba929c8866b2251 Reviewed-by: Magdalena Stojek Reviewed-by: Edward Welbourne --- src/corelib/io/qlockfile_unix.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelib/io/qlockfile_unix.cpp b/src/corelib/io/qlockfile_unix.cpp index bd0569bce2c..7565297496a 100644 --- a/src/corelib/io/qlockfile_unix.cpp +++ b/src/corelib/io/qlockfile_unix.cpp @@ -104,9 +104,9 @@ static qint64 qt_write_loop(int fd, const char *data, qint64 len) * We therefore use only flock(2), except on Android. * * Android Compatibility: - * Some versions of Android have known issues where flock does not function correctly.  + * Some versions of Android have known issues where flock does not function correctly. * As a result, on Android, we use POSIX fcntl(F_SETLK) to handle file locking. - * fcntl is better integrated with Android’s underlying system, avoiding + * fcntl is better integrated with Android’s underlying system, avoiding * the limitations of flock. */