summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-06-17 12:51:18 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-06-17 12:51:18 +0000
commit5f72552dc67d5374555d440b282d2c1fc65fbfe6 (patch)
tree71b22635c6a730acfd1f6b03fcf86bc10ca097be
parentea9a540637ecf639744e6c10f3327aa85f99fe35 (diff)
downloadATCD-5f72552dc67d5374555d440b282d2c1fc65fbfe6.tar.gz
ChangeLogTag: Fri Jun 17 12:48:31 UTC 2011 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--ACE/ChangeLog9
-rw-r--r--ACE/ace/Basic_Types.h2
2 files changed, 10 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 8804160fb52..373482dc642 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,12 @@
+Fri Jun 17 12:48:31 UTC 2011 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * ace/Basic_Types.h:
+
+ Removed the 'L' from the version of
+ ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII targeted at MinGW
+ platforms. That platform apparently doesn't support that
+ part of the C print format spec.
+
Thu Jun 16 13:31:16 UTC 2011 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/Basic_Types.h:
diff --git a/ACE/ace/Basic_Types.h b/ACE/ace/Basic_Types.h
index 561e522b912..613a74ff926 100644
--- a/ACE/ace/Basic_Types.h
+++ b/ACE/ace/Basic_Types.h
@@ -838,7 +838,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL
# define ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII "%#24.16G"
# else
# if defined (__MINGW32__)
-# define ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII "%24.16LG"
+# define ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII "%24.16G"
# else
# define ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII "%#24.16LGL"
# endif /* __MINGW32__ */