aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2011-07-15 05:52:04 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2011-07-15 05:52:04 +0000
commitf39a9ca22f4fd9504f56a6d3d34fa693d8874e4e (patch)
treec4444a08f83fff0340e04a320ac51e9dd0d2740a /gcc
parentefa8c82ad7e6462bd79d118e6d9fb79aa5c32cc8 (diff)
downloadgcc-f39a9ca22f4fd9504f56a6d3d34fa693d8874e4e.zip
gcc-f39a9ca22f4fd9504f56a6d3d34fa693d8874e4e.tar.gz
gcc-f39a9ca22f4fd9504f56a6d3d34fa693d8874e4e.tar.bz2
re PR ada/48711 (failure to bootstrap or build ada for mingw (value not in range of type "Interfaces.C.unsigned" in g-socthi.adb))
PR ada/48711 * g-socthi-mingw.adb (Fill): Fix formatting. From-SVN: r176305
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/ChangeLog5
-rw-r--r--gcc/ada/g-socthi-mingw.adb4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index c201124..7abc041 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-15 Eric Botcazou <ebotcazou@adacore.com>
+
+ PR ada/48711
+ * g-socthi-mingw.adb (Fill): Fix formatting.
+
2011-07-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR ada/46350
diff --git a/gcc/ada/g-socthi-mingw.adb b/gcc/ada/g-socthi-mingw.adb
index 697425e..f57353d 100644
--- a/gcc/ada/g-socthi-mingw.adb
+++ b/gcc/ada/g-socthi-mingw.adb
@@ -277,8 +277,8 @@ package body GNAT.Sockets.Thin is
use type C.size_t;
Fill : constant Boolean :=
- SOSC.MSG_WAITALL /= -1
- and then (C.unsigned (Flags) and SOSC.MSG_WAITALL) /= 0;
+ SOSC.MSG_WAITALL /= -1
+ and then (C.unsigned (Flags) and SOSC.MSG_WAITALL) /= 0;
-- Is the MSG_WAITALL flag set? If so we need to fully fill all vectors
Res : C.int;