[gtk+] Fix unclosed comments



commit 823ee6d5294e71822104592f61ff17b80f8e1fd6
Author: Matthias Clasen <mclasen redhat com>
Date:   Thu May 3 16:11:14 2012 -0400

    Fix unclosed comments

 gdk/fallback-c89.c |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/gdk/fallback-c89.c b/gdk/fallback-c89.c
index d766154..35dea77 100644
--- a/gdk/fallback-c89.c
+++ b/gdk/fallback-c89.c
@@ -20,9 +20,10 @@
 #include <float.h>
 
 #ifndef HAVE_ISNAN
-/* it seems of the supported compilers only */
-/* MSVC does not have isnan(), but it does
-/* have _isnan() which does the same as isnan() */
+/* it seems of the supported compilers only
+ * MSVC does not have isnan(), but it does
+ * have _isnan() which does the same as isnan()
+ */
 static inline gboolean
 isnan (double x)
 {
@@ -31,9 +32,10 @@ isnan (double x)
 #endif
 
 #ifndef HAVE_ISINF
-/* Unfortunately MSVC does not have finite() */
-/* but it does have _finite() which is the same */
-/* as finite() except when x is a NaN */
+/* Unfortunately MSVC does not have finite()
+ * but it does have _finite() which is the same
+ * as finite() except when x is a NaN
+ */
 static inline gboolean
 isinf (double x)
 {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]