Misc warning fixes
authorDan Winship <danw@gnome.org>
Fri, 1 May 2009 14:08:52 +0000 (10:08 -0400)
committerDan Winship <danw@gnome.org>
Fri, 1 May 2009 14:37:45 +0000 (10:37 -0400)
glib/pcre/pcre_ucp_search_funcs.c, glib/pcre/pcre_valid_utf8.c: add
back missing config.h includes, and this time add them to the copies
in glib/update-pcre/ too so they don't get lost again on the next PCRE
update.

glib/garray.c, glib/gbase64.c: fix signed/unsigned pointer casts

gio/xdgmime/xdgmimeglob.c: remove unused variable

gio/tests/live-g-file.c: fix printf args on x86_64

tests/Makefile.am, tests/regex-test.c: remove redundant -DENABLE_REGEX

gio/tests/live-g-file.c
gio/xdgmime/xdgmimeglob.c
glib/garray.c
glib/gbase64.c
glib/pcre/pcre_ucp_searchfuncs.c
glib/pcre/pcre_valid_utf8.c
glib/update-pcre/pcre_ucp_searchfuncs.c
glib/update-pcre/pcre_valid_utf8.c
tests/Makefile.am
tests/regex-test.c

index fe11d31..0b074df 100644 (file)
@@ -458,8 +458,8 @@ test_initial_structure (gconstpointer test_data)
                             PATTERN_FILE_SIZE, NULL, &error);
       g_assert_no_error (error);
       total_read += read;
-      log ("      read %d bytes, total = %d of %d.\n", read, total_read,
-          PATTERN_FILE_SIZE);
+      log ("      read %d bytes, total = %d of %d.\n", (int) read,
+          (int) total_read, PATTERN_FILE_SIZE);
     }
   g_assert_cmpint (total_read, ==, PATTERN_FILE_SIZE);
 
index 22acd3e..d7c79b1 100644 (file)
@@ -375,7 +375,6 @@ _xdg_glob_hash_lookup_file_name (XdgGlobHash *glob_hash,
   int i, n;
   MimeWeight mimes[10];
   int n_mimes = 10;
-  xdg_unichar_t *ucs4;
   int len;
 
   /* First, check the literals */
index 64f70e7..8cb6e1d 100644 (file)
@@ -181,7 +181,7 @@ g_array_free (GArray   *farray,
       segment = NULL;
     }
   else
-    segment = array->data;
+    segment = (gchar*) array->data;
 
   if (preserve_wrapper)
     {
index bfdc76a..bebff76 100644 (file)
@@ -415,7 +415,7 @@ g_base64_decode_inplace (gchar *text,
 
   *out_len = g_base64_decode_step (text, input_length, (guchar *) text, &state, &save);
   
-  return text; 
+  return (guchar *) text; 
 }
 
 
index 9060fbc..3e1ed38 100644 (file)
@@ -43,6 +43,10 @@ POSSIBILITY OF SUCH DAMAGE.
 /* This module contains code for searching the table of Unicode character
 properties. */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "pcre_internal.h"
 
 #include "ucp.h"               /* Category definitions */
index a5766b4..b7671a9 100644 (file)
@@ -1,3 +1,4 @@
+#include "config.h"
 #include "pcre_internal.h"
 
 /*
index b95d279..77ec8d1 100644 (file)
@@ -43,6 +43,10 @@ POSSIBILITY OF SUCH DAMAGE.
 /* This module contains code for searching the table of Unicode character
 properties. */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "pcre_internal.h"
 
 #include "ucp.h"               /* Category definitions */
index a5766b4..b7671a9 100644 (file)
@@ -1,3 +1,4 @@
+#include "config.h"
 #include "pcre_internal.h"
 
 /*
index 57f1555..da13976 100644 (file)
@@ -2,18 +2,11 @@ include $(top_srcdir)/Makefile.decl
 
 SUBDIRS=gobject refcount
 
-if ENABLE_REGEX
-enable_regex = -DENABLE_REGEX
-else
-enable_regex =
-endif
-
 AM_CPPFLAGS =                          \
        -I$(top_srcdir)                 \
        -I$(top_srcdir)/glib            \
        -I$(top_srcdir)/gmodule         \
-       $(GLIB_DEBUG_FLAGS)             \
-       $(enable_regex)
+       $(GLIB_DEBUG_FLAGS)
 
 AM_CFLAGS = -g
 
index 2e00051..6ad9ceb 100644 (file)
@@ -20,6 +20,8 @@
 #undef G_DISABLE_ASSERT
 #undef G_LOG_DOMAIN
 
+#include "config.h"
+
 #include <string.h>
 #include <locale.h>
 #include "glib.h"