Fix warnings when compiling with mingw32
authorJohn Darrington <john@darrington.wattle.id.au>
Wed, 21 Feb 2007 08:27:16 +0000 (08:27 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Wed, 21 Feb 2007 08:27:16 +0000 (08:27 +0000)
src/libpspp/i18n.c
src/output/dummy-chart.c
src/ui/gui/var-sheet.c

index ffaa40489b042c7460480a0989bd6730a37c5e9b..a2c0af0f94e8f5a6d0188a16c994c131fe02605d 100644 (file)
@@ -67,7 +67,6 @@ recode_string(enum conv_id how,  const char *text, int length)
   char *outbuf = 0;
   size_t outbufferlength;
   size_t result;
-  char *ip ;
   char *op ;
   size_t inbytes = 0;
   size_t outbytes ;
@@ -92,13 +91,12 @@ recode_string(enum conv_id how,  const char *text, int length)
 
   outbuf = xmalloc(outbufferlength);
   op = outbuf;
-  ip = (char *) text;
 
   outbytes = outbufferlength;
   inbytes = length;
   
   do {
-    result = iconv(convertor[how], &ip, &inbytes, 
+    result = iconv(convertor[how], &text, &inbytes, 
                   &op, &outbytes);
 
     if ( -1 == result ) 
@@ -113,7 +111,7 @@ recode_string(enum conv_id how,  const char *text, int length)
              {
                *op++ = fallbackchar;
                outbytes--;
-               ip++;
+               text++;
                inbytes--;
                break;
              }
@@ -123,7 +121,6 @@ recode_string(enum conv_id how,  const char *text, int length)
            outbufferlength <<= 1;
            outbuf = xmalloc(outbufferlength);
            op = outbuf;
-           ip = (char *) text;
            outbytes = outbufferlength;
            inbytes = length;
            break;
index 8c4c55e44410c3f691468ea6760fe456cd25706d..dc20162c410bfe7f4830dfb332cf4e4df00af169 100644 (file)
@@ -17,8 +17,9 @@
    02110-1301, USA. */
 
 #include <config.h>
-
 #include <stdio.h>
+#include <libpspp/compiler.h>
+#include "chart.h"
 
 
 struct chart *
@@ -28,7 +29,7 @@ chart_create(void)
 }
 
 void
-chart_submit(struct chart *chart)
+chart_submit(struct chart *chart UNUSED)
 {
 }
 
index 3c26fcd1778b8f92235338ce49c431a5476f1d31..d8e6f6f7195e0a15dd1bd7ddbf961278b4afedbb 100644 (file)
@@ -33,7 +33,9 @@
 
 #include <stdlib.h>
 #include <string.h>
+#if HAVE_LANGINFO_H
 #include <langinfo.h>
+#endif
 
 #include <data/value.h>
 
@@ -444,10 +446,12 @@ psppire_variable_sheet_create (gchar *widget_name,
   gtk_sheet_set_model (GTK_SHEET (sheet), G_SHEET_MODEL (the_var_store));
 
 
+#if HAVE_LANGINFO_H
   /* Since this happens inside glade_xml_new, we must prevent strings from
    * being re-encoded twice */
   codeset = bind_textdomain_codeset (PACKAGE, 0);
   bind_textdomain_codeset (PACKAGE, nl_langinfo (CODESET));
+#endif
   for (i = 0 ; i < n_COLS ; ++i )
     {
       g_sheet_hetero_column_set_button_label (G_SHEET_HETERO_COLUMN (geo), i,
@@ -456,7 +460,9 @@ psppire_variable_sheet_create (gchar *widget_name,
       g_sheet_hetero_column_set_width (G_SHEET_HETERO_COLUMN (geo), i,
                                               column_def[i].width);
     }
+#if HAVE_LANGINFO_H
   bind_textdomain_codeset (PACKAGE, codeset);
+#endif
 
   gtk_widget_show (sheet);