Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eglib
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2006-10-15 08:00:04 +0400
committerMiguel de Icaza <miguel@gnome.org>2006-10-15 08:00:04 +0400
commit2466e90c86256c90cdd4667632b26b2c26b074b3 (patch)
tree4ff2be0ee9f6e19baccb4b5be2fc273e3b606117 /eglib
parent8984c73d782b2731b4efd08bf52db538001d53bd (diff)
Fix typo
svn path=/trunk/mono/; revision=66682
Diffstat (limited to 'eglib')
-rw-r--r--eglib/src/glib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/eglib/src/glib.h b/eglib/src/glib.h
index 8d4103f0aad..f4bf3fe3f44 100644
--- a/eglib/src/glib.h
+++ b/eglib/src/glib.h
@@ -721,7 +721,7 @@ gboolean g_utf8_validate (const gchar *str, gssize max_len, const gchar **
#endif
#define GUINT32_FROM_LE(x) (GUINT32_TO_LE (x))
-#define GUINT64_FROM_LE(x) (GUIN64_TO_LE (x))
+#define GUINT64_FROM_LE(x) (GUINT64_TO_LE (x))
#define GUINT16_FROM_LE(x) (GUINT16_TO_LE (x))
#define _EGLIB_MAJOR 2
@@ -729,6 +729,6 @@ gboolean g_utf8_validate (const gchar *str, gssize max_len, const gchar **
#define _EGLIB_MINOR 0
#define GLIB_CHECK_VERSION(a,b,c) ((a < _EGLIB_MAJOR) || (a == _EGLIB_MAJOR && (b < _EGLIB_MIDDLE || (b == _EGLIB_MIDDLE && c <= _EGLIB_MINOR))))
-
+
#endif