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 <magdalena.stojek@qt.io>
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
This commit is contained in:
Matthias Rauter 2025-05-08 10:48:51 +02:00
parent bdf9d70394
commit 1c0f02f368

View File

@ -104,7 +104,7 @@ static qint64 qt_write_loop(int fd, const char *data, qint64 len)
* We therefore use only flock(2), except on Android. * We therefore use only flock(2), except on Android.
* *
* Android Compatibility: * 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. * As a result, on Android, we use POSIX fcntl(F_SETLK) to handle file locking.
* fcntl is better integrated with Androids underlying system, avoiding * fcntl is better integrated with Androids underlying system, avoiding
* the limitations of flock. * the limitations of flock.