mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-12-09 10:04:50 +01:00
added glib_gettext (in use by gio) also try building gio
2007-12-03 Hans Breuer <hans@breuer.org> * glib/glib.symbols : added glib_gettext (in use by gio) * makefile.msc : also try building gio * glib/gmarkup.c : use G_GUINT64_CONSTANT() to avoid 'bad suffix on number' * glib/gtestutils.c : declare cariable at the beginning of the block, include <io.h> for G_OS_WIN32 * makefile.msc.in : add gurifuncs and gtestutils svn path=/trunk/; revision=6028
This commit is contained in:
@@ -2496,7 +2496,7 @@ g_markup_collect_attributes (const gchar *element_name,
|
||||
mandatory = FALSE;
|
||||
|
||||
for (i = 0; attribute_names[i]; i++)
|
||||
if (i >= 40 || !(collected & (1ull << i)))
|
||||
if (i >= 40 || !(collected & (G_GUINT64_CONSTANT(1) << i)))
|
||||
if (!strcmp (attribute_names[i], attr))
|
||||
break;
|
||||
|
||||
@@ -2514,7 +2514,7 @@ g_markup_collect_attributes (const gchar *element_name,
|
||||
* what error it is, so just continue...
|
||||
*/
|
||||
if (i < 40)
|
||||
collected |= (1ull << i);
|
||||
collected |= (G_GUINT64_CONSTANT(1) << i);
|
||||
|
||||
value = attribute_values[i];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user