From 5e5dd448dd801f5da9d2259261ed3c237fd73163 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Thu, 19 Mar 1998 02:11:53 +0000 Subject: [PATCH] *AlienMap/AlienMap.c CEL/CEL.c CML_explorer/CML_explorer.c align_layers/align_layers.c animationplay/animationplay.c bmp/bmpwrite.c dbbrowser/dbbrowser.c emboss/emboss.c exchange/exchange.c faxg3/faxg3.c faxg3/g3.c gbr/gbr.c gif/gif.c gqbist/gqbist.c hot/hot.c ifscompose/ifscompose.c iwarp/iwarp.c max_rgb/max_rgb.c maze/maze_face.c megawidget/megawidget.c mpeg/mpeg.c nlfilt/nlfilt.c pcx/pcx.c plasma/plasma.c pnm/pnm.c print/print-escp2.c print/print-pcl.c print/print.c scatter_hsv/scatter_hsv.c script-fu/script-fu-scripts.c script-fu/script-fu.c sinus/sinus.c tga/tga.c tileit/tileit.c vpropagate/vpropagate.c xpm/xpm.c: More picky picky ansi type stuff from gimp-hpux-980316.patch. isnt big patches fun? -adrian --- plug-ins/AlienMap/AlienMap.c | 2 +- plug-ins/CEL/CEL.c | 4 ++-- plug-ins/CML_explorer/CML_explorer.c | 2 +- plug-ins/align_layers/align_layers.c | 2 +- plug-ins/animationplay/animationplay.c | 2 +- plug-ins/bmp/bmpwrite.c | 2 +- plug-ins/common/CEL.c | 4 ++-- plug-ins/common/CML_explorer.c | 2 +- plug-ins/common/align_layers.c | 2 +- plug-ins/common/animationplay.c | 2 +- plug-ins/common/emboss.c | 4 ++-- plug-ins/common/exchange.c | 2 +- plug-ins/common/gbr.c | 2 +- plug-ins/common/gif.c | 4 ++-- plug-ins/common/gqbist.c | 4 ++-- plug-ins/common/hot.c | 4 ++-- plug-ins/common/iwarp.c | 4 ++-- plug-ins/common/max_rgb.c | 4 ++-- plug-ins/common/mpeg.c | 2 +- plug-ins/common/nlfilt.c | 4 ++-- plug-ins/common/pcx.c | 2 +- plug-ins/common/plasma.c | 4 ++-- plug-ins/common/pnm.c | 18 +++++++++--------- plug-ins/common/procedure-browser.c | 2 +- plug-ins/common/scatter_hsv.c | 6 +++--- plug-ins/common/tga.c | 8 ++++---- plug-ins/common/tileit.c | 2 +- plug-ins/common/vpropagate.c | 2 +- plug-ins/common/xpm.c | 2 +- plug-ins/dbbrowser/dbbrowser.c | 2 +- plug-ins/dbbrowser/procedure-browser.c | 2 +- plug-ins/emboss/emboss.c | 4 ++-- plug-ins/exchange/exchange.c | 2 +- plug-ins/faxg3/faxg3.c | 4 ++-- plug-ins/faxg3/g3.c | 2 +- plug-ins/gbr/gbr.c | 2 +- plug-ins/gif/gif.c | 4 ++-- plug-ins/gqbist/gqbist.c | 4 ++-- plug-ins/hot/hot.c | 4 ++-- plug-ins/ifscompose/ifscompose.c | 2 +- plug-ins/iwarp/iwarp.c | 4 ++-- plug-ins/max_rgb/max_rgb.c | 4 ++-- plug-ins/maze/maze_face.c | 2 +- plug-ins/megawidget/megawidget.c | 10 +++++----- plug-ins/mpeg/mpeg.c | 2 +- plug-ins/nlfilt/nlfilt.c | 4 ++-- plug-ins/pcx/pcx.c | 2 +- plug-ins/plasma/plasma.c | 4 ++-- plug-ins/pnm/pnm.c | 18 +++++++++--------- plug-ins/print/print-escp2.c | 21 ++++++++++++++++++++- plug-ins/print/print-pcl.c | 23 +++++++++++++++++++++-- plug-ins/print/print.c | 21 ++++++++++++++++++++- plug-ins/scatter_hsv/scatter_hsv.c | 6 +++--- plug-ins/script-fu/script-fu-interface.c | 6 +++--- plug-ins/script-fu/script-fu-scripts.c | 6 +++--- plug-ins/script-fu/script-fu.c | 2 +- plug-ins/sinus/sinus.c | 4 ++-- plug-ins/tga/tga.c | 8 ++++---- plug-ins/tileit/tileit.c | 2 +- plug-ins/vpropagate/vpropagate.c | 2 +- plug-ins/xpm/xpm.c | 2 +- 61 files changed, 173 insertions(+), 116 deletions(-) diff --git a/plug-ins/AlienMap/AlienMap.c b/plug-ins/AlienMap/AlienMap.c index c6bf7d49e3..6d89eed9f4 100644 --- a/plug-ins/AlienMap/AlienMap.c +++ b/plug-ins/AlienMap/AlienMap.c @@ -1159,7 +1159,7 @@ alienmap_logo_dialog() GTK_WIDGET_SET_FLAGS(xbutton, GTK_CAN_DEFAULT); gtk_signal_connect_object (GTK_OBJECT(xbutton), "clicked", GTK_SIGNAL_FUNC (gtk_widget_hide), - logodlg); + GTK_OBJECT(logodlg)); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(logodlg)->action_area), xbutton, TRUE, TRUE, 0); gtk_widget_grab_default(xbutton); diff --git a/plug-ins/CEL/CEL.c b/plug-ins/CEL/CEL.c index a832e60467..ec52eeceec 100644 --- a/plug-ins/CEL/CEL.c +++ b/plug-ins/CEL/CEL.c @@ -157,7 +157,7 @@ static gint32 load_image(char *file, char *brief) { fread(header, 4, 1, fp); - if (strncmp(header, "KiSS", 4)) { + if (strncmp((char *)header, "KiSS", 4)) { colours= 16; width= header[0] + (256 * header[1]); height= header[2] + (256 * header[3]); @@ -273,7 +273,7 @@ static gint save_image(char *file, char *brief, gint32 image, gint32 layer) { /* Headers */ memset(header,(int)0,(size_t)32); - strcpy(header, "KiSS"); + strcpy((char *)header, "KiSS"); header[4]= 0x20; /* Work out whether to save as 8bit or 4bit */ diff --git a/plug-ins/CML_explorer/CML_explorer.c b/plug-ins/CML_explorer/CML_explorer.c index ceb06595e7..44f82cefb2 100644 --- a/plug-ins/CML_explorer/CML_explorer.c +++ b/plug-ins/CML_explorer/CML_explorer.c @@ -464,7 +464,7 @@ gint mem_chank1_size = 0; guchar *mem_chank2 = NULL; gint mem_chank2_size = 0; -MAIN (); +MAIN () static void query () diff --git a/plug-ins/align_layers/align_layers.c b/plug-ins/align_layers/align_layers.c index c799097099..e72f5ad06e 100644 --- a/plug-ins/align_layers/align_layers.c +++ b/plug-ins/align_layers/align_layers.c @@ -200,7 +200,7 @@ static Interface INTERFACE = { FALSE }; /* gint link_after_alignment = 0;*/ -MAIN (); +MAIN () static void query () diff --git a/plug-ins/animationplay/animationplay.c b/plug-ins/animationplay/animationplay.c index 21f8b6a6bc..923310ec53 100644 --- a/plug-ins/animationplay/animationplay.c +++ b/plug-ins/animationplay/animationplay.c @@ -304,7 +304,7 @@ build_dialog(GImageType basetype, gtk_window_position (GTK_WINDOW (dlg), GTK_WIN_POS_MOUSE); gtk_signal_connect (GTK_OBJECT (dlg), "destroy", (GtkSignalFunc) window_close_callback, - dlg); + (GtkObject *)dlg); /* Action area - 'close' button only. */ diff --git a/plug-ins/bmp/bmpwrite.c b/plug-ins/bmp/bmpwrite.c index 5f0b578da9..9879a22b9b 100644 --- a/plug-ins/bmp/bmpwrite.c +++ b/plug-ins/bmp/bmpwrite.c @@ -132,7 +132,7 @@ WriteBMP (filename,image,drawable_ID) /* fetch the image */ - pixels = (guchar *) g_malloc(drawable->width*drawable->height*channels); + pixels = (char *) g_malloc(drawable->width*drawable->height*channels); gimp_pixel_rgn_get_rect(&pixel_rgn, pixels, 0, 0, drawable->width, drawable->height); /* And let's begin the progress */ diff --git a/plug-ins/common/CEL.c b/plug-ins/common/CEL.c index a832e60467..ec52eeceec 100644 --- a/plug-ins/common/CEL.c +++ b/plug-ins/common/CEL.c @@ -157,7 +157,7 @@ static gint32 load_image(char *file, char *brief) { fread(header, 4, 1, fp); - if (strncmp(header, "KiSS", 4)) { + if (strncmp((char *)header, "KiSS", 4)) { colours= 16; width= header[0] + (256 * header[1]); height= header[2] + (256 * header[3]); @@ -273,7 +273,7 @@ static gint save_image(char *file, char *brief, gint32 image, gint32 layer) { /* Headers */ memset(header,(int)0,(size_t)32); - strcpy(header, "KiSS"); + strcpy((char *)header, "KiSS"); header[4]= 0x20; /* Work out whether to save as 8bit or 4bit */ diff --git a/plug-ins/common/CML_explorer.c b/plug-ins/common/CML_explorer.c index ceb06595e7..44f82cefb2 100644 --- a/plug-ins/common/CML_explorer.c +++ b/plug-ins/common/CML_explorer.c @@ -464,7 +464,7 @@ gint mem_chank1_size = 0; guchar *mem_chank2 = NULL; gint mem_chank2_size = 0; -MAIN (); +MAIN () static void query () diff --git a/plug-ins/common/align_layers.c b/plug-ins/common/align_layers.c index c799097099..e72f5ad06e 100644 --- a/plug-ins/common/align_layers.c +++ b/plug-ins/common/align_layers.c @@ -200,7 +200,7 @@ static Interface INTERFACE = { FALSE }; /* gint link_after_alignment = 0;*/ -MAIN (); +MAIN () static void query () diff --git a/plug-ins/common/animationplay.c b/plug-ins/common/animationplay.c index 21f8b6a6bc..923310ec53 100644 --- a/plug-ins/common/animationplay.c +++ b/plug-ins/common/animationplay.c @@ -304,7 +304,7 @@ build_dialog(GImageType basetype, gtk_window_position (GTK_WINDOW (dlg), GTK_WIN_POS_MOUSE); gtk_signal_connect (GTK_OBJECT (dlg), "destroy", (GtkSignalFunc) window_close_callback, - dlg); + (GtkObject *)dlg); /* Action area - 'close' button only. */ diff --git a/plug-ins/common/emboss.c b/plug-ins/common/emboss.c index 697fd7646c..b96238fa0b 100644 --- a/plug-ins/common/emboss.c +++ b/plug-ins/common/emboss.c @@ -210,7 +210,7 @@ run(gchar *name, gint nparam, GParam *param, } #define pixelScale 255.9 -void +static void EmbossInit(gdouble azimuth, gdouble elevation, gushort width45) { /* * compute the light vector from the input parameters. @@ -250,7 +250,7 @@ EmbossInit(gdouble azimuth, gdouble elevation, gushort width45) { * */ -void +static inline void EmbossRow(guchar *src, guchar *texture, guchar *dst, guint xSize, guint bypp, gint alpha) { glong Nx, Ny, NdotL; diff --git a/plug-ins/common/exchange.c b/plug-ins/common/exchange.c index 0f4a4b291e..ad4b8784cb 100644 --- a/plug-ins/common/exchange.c +++ b/plug-ins/common/exchange.c @@ -334,7 +334,7 @@ int doDialog() GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); gtk_signal_connect_object (GTK_OBJECT(button), "clicked", (GtkSignalFunc) gtk_widget_destroy, - dialog); + GTK_OBJECT(dialog)); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->action_area), button, TRUE, TRUE, 0); gtk_widget_show(button); diff --git a/plug-ins/common/gbr.c b/plug-ins/common/gbr.c index 64dbb1e074..5073a7b490 100644 --- a/plug-ins/common/gbr.c +++ b/plug-ins/common/gbr.c @@ -253,7 +253,7 @@ static gint32 load_image (char *filename) { g_free(buffer); return -1; } - gimp_pixel_rgn_set_row(&pixel_rgn, buffer, 0, line, ph.width); + gimp_pixel_rgn_set_row(&pixel_rgn, (guchar *)buffer, 0, line, ph.width); gimp_progress_update((double) line / (double) ph.height); } diff --git a/plug-ins/common/gif.c b/plug-ins/common/gif.c index 8df4d2f68c..e960c894d1 100644 --- a/plug-ins/common/gif.c +++ b/plug-ins/common/gif.c @@ -841,8 +841,8 @@ DoExtension (FILE *fd, ; return FALSE; default: - str = buf; - sprintf (buf, "UNKNOWN (0x%02x)", label); + str = (char *)buf; + sprintf ((char *)buf, "UNKNOWN (0x%02x)", label); break; } diff --git a/plug-ins/common/gqbist.c b/plug-ins/common/gqbist.c index 6de8321ceb..06b0850838 100644 --- a/plug-ins/common/gqbist.c +++ b/plug-ins/common/gqbist.c @@ -374,7 +374,7 @@ void run(char *name, int nparams, GParam *param, int *nreturn_vals, GParam **ret gimp_progress_init ("Qbist ..."); for (row=sel_y1; row 0) diff --git a/plug-ins/common/nlfilt.c b/plug-ins/common/nlfilt.c index 7774a76651..768aabf60a 100644 --- a/plug-ins/common/nlfilt.c +++ b/plug-ins/common/nlfilt.c @@ -471,7 +471,7 @@ gint noisevariance; /* global so that pixel processing code can get at it q #define RUNSCALE(x) (((x) + (1 << (SCALEB-1))) >> SCALEB) /* rounded un-scale */ #define UNSCALE(x) ((x) >> SCALEB) -void +static void nlfiltRow(guchar *src, guchar *dst, gint width, gint Bpp, gint filtno) { gint x, po, no; gint pf[9]; @@ -524,7 +524,7 @@ gint AVEDIV[7 * NOCSVAL]; /* divide by 7 to give average value */ gint SQUARE[2 * NOCSVAL]; /* scaled square lookup table */ /* Table initialisation function - return alpha range */ -gint +static inline gint nlfiltInit(gdouble alpha, gdouble radius, FilterType filter) { gint alpharange; /* alpha range value 0 - 3 */ gdouble meanscale; /* scale for finding mean */ diff --git a/plug-ins/common/pcx.c b/plug-ins/common/pcx.c index ea17400619..fcc5f0782e 100644 --- a/plug-ins/common/pcx.c +++ b/plug-ins/common/pcx.c @@ -366,7 +366,7 @@ static void readline(FILE *fp, guchar *buffer, int bytes) { } } -gint save_image (char *filename, gint32 image, gint32 layer) { +static gint save_image (char *filename, gint32 image, gint32 layer) { FILE *fp; GPixelRgn pixel_rgn; GDrawable *drawable; diff --git a/plug-ins/common/plasma.c b/plug-ins/common/plasma.c index 880a3b32eb..14bb1050ce 100644 --- a/plug-ins/common/plasma.c +++ b/plug-ins/common/plasma.c @@ -309,8 +309,8 @@ plasma_dialog() entry = gtk_entry_new (); gtk_table_attach (GTK_TABLE (table), entry, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 0, 0 ); gtk_widget_set_usize( entry, ENTRY_WIDTH, 0 ); - sprintf( buffer, "%d", pvals.seed ); - gtk_entry_set_text (GTK_ENTRY (entry), buffer ); + sprintf( (char *)buffer, "%d", pvals.seed ); + gtk_entry_set_text (GTK_ENTRY (entry), (gchar *)buffer ); gtk_signal_connect (GTK_OBJECT (entry), "changed", (GtkSignalFunc) plasma_entry_callback, &pvals.seed); diff --git a/plug-ins/common/pnm.c b/plug-ins/common/pnm.c index 556b94fd01..3028b895d0 100644 --- a/plug-ins/common/pnm.c +++ b/plug-ins/common/pnm.c @@ -457,7 +457,7 @@ load_image (char *filename) } -void +static void pnm_load_ascii (PNMScanner *scan, PNMInfo *info, GPixelRgn *pixel_rgn) @@ -517,7 +517,7 @@ pnm_load_ascii (PNMScanner *scan, g_free (data); } -void +static void pnm_load_raw (PNMScanner *scan, PNMInfo *info, GPixelRgn *pixel_rgn) @@ -564,7 +564,7 @@ pnm_load_raw (PNMScanner *scan, } void -pnm_load_rawpbm (PNMScanner *scan, +static pnm_load_rawpbm (PNMScanner *scan, PNMInfo *info, GPixelRgn *pixel_rgn) { @@ -936,7 +936,7 @@ save_dialog () * Creates a new scanner based on a file descriptor. The * look ahead buffer is one character initially. */ -PNMScanner * +static PNMScanner * pnmscanner_create (int fd) { PNMScanner *s; @@ -952,7 +952,7 @@ pnmscanner_create (int fd) /* pnmscanner_destroy --- * Destroys a scanner and its resources. Doesn't close the fd. */ -void +static void pnmscanner_destroy (PNMScanner *s) { if (s->inbuf) g_free(s->inbuf); @@ -962,7 +962,7 @@ pnmscanner_destroy (PNMScanner *s) /* pnmscanner_createbuffer --- * Creates a buffer so we can do buffered reads. */ -void +static void pnmscanner_createbuffer (PNMScanner *s, int bufsize) { @@ -975,7 +975,7 @@ pnmscanner_createbuffer (PNMScanner *s, /* pnmscanner_gettoken --- * Gets the next token, eating any leading whitespace. */ -void +static void pnmscanner_gettoken (PNMScanner *s, char *buf, int bufsize) @@ -994,7 +994,7 @@ pnmscanner_gettoken (PNMScanner *s, /* pnmscanner_getchar --- * Reads a character from the input stream */ -void +static void pnmscanner_getchar (PNMScanner *s) { if (s->inbuf) @@ -1017,7 +1017,7 @@ pnmscanner_getchar (PNMScanner *s) * Eats up whitespace from the input and returns when done or eof. * Also deals with comments. */ -void +static void pnmscanner_eatwhitespace (PNMScanner *s) { int state = 0; diff --git a/plug-ins/common/procedure-browser.c b/plug-ins/common/procedure-browser.c index 758747601f..183ac12e5b 100644 --- a/plug-ins/common/procedure-browser.c +++ b/plug-ins/common/procedure-browser.c @@ -63,7 +63,7 @@ GPlugInInfo PLUG_IN_INFO = }; -MAIN (); +MAIN () static void query () diff --git a/plug-ins/common/scatter_hsv.c b/plug-ins/common/scatter_hsv.c index 4a27b97da4..49c9f53c35 100644 --- a/plug-ins/common/scatter_hsv.c +++ b/plug-ins/common/scatter_hsv.c @@ -144,7 +144,7 @@ gint preview_dragging = FALSE; gint preview_drag_start_x = 0; gint preview_drag_start_y = 0; -MAIN (); +MAIN () static void query () @@ -202,7 +202,7 @@ run (char *name, gimp_get_data (PLUG_IN_NAME, &VALS); if (!gimp_drawable_color(drawable_id)) { - scatter_hsv_error_dialog (1, "RGB drawable is not selected."); + scatter_hsv_error_dialog (1, (guchar *)"RGB drawable is not selected."); return; } if (! DIALOG ()) @@ -627,7 +627,7 @@ ERROR_DIALOG (gint gtk_was_not_initialized, guchar *message) gtk_container_border_width (GTK_CONTAINER (table), 10); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), table, TRUE, TRUE, 0); - label = gtk_label_new (message); + label = gtk_label_new ((char *)message); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_FILL|GTK_EXPAND, 0, 0, 0); diff --git a/plug-ins/common/tga.c b/plug-ins/common/tga.c index 915c2e4d30..513c4f357b 100644 --- a/plug-ins/common/tga.c +++ b/plug-ins/common/tga.c @@ -188,7 +188,7 @@ GPlugInInfo PLUG_IN_INFO = }; -MAIN (); +MAIN () #ifdef VERBOSE static int verbose = VERBOSE; @@ -1101,7 +1101,7 @@ ReadImage (FILE *fp, struct tga_header *hdr, char *filename) } /*read_image*/ -gint +static gint save_image (char *filename, gint32 image_ID, gint32 drawable_ID) @@ -1127,8 +1127,8 @@ save_image (char *filename, height = drawable->height; name_buf = (guchar *) g_malloc(strlen(filename) + 11); - sprintf(name_buf, "Saving %s:", filename); - gimp_progress_init(name_buf); + sprintf((char *)name_buf, "Saving %s:", filename); + gimp_progress_init((char *)name_buf); g_free(name_buf); memset (&hdr, 0, sizeof (hdr)); diff --git a/plug-ins/common/tileit.c b/plug-ins/common/tileit.c index 90f06e72f8..07700b5a49 100644 --- a/plug-ins/common/tileit.c +++ b/plug-ins/common/tileit.c @@ -140,7 +140,7 @@ static TileItVals itvals = typedef enum { ALL, ALT, - EXPLICT, + EXPLICT } AppliedTo; typedef struct { diff --git a/plug-ins/common/vpropagate.c b/plug-ins/common/vpropagate.c index ca6868b269..3242c06bfe 100644 --- a/plug-ins/common/vpropagate.c +++ b/plug-ins/common/vpropagate.c @@ -225,7 +225,7 @@ typedef struct static VPInterface vpropagate_interface = { FALSE }; gint drawable_id; -MAIN (); +MAIN () static void query () diff --git a/plug-ins/common/xpm.c b/plug-ins/common/xpm.c index 42b3b21071..1f663166ff 100644 --- a/plug-ins/common/xpm.c +++ b/plug-ins/common/xpm.c @@ -133,7 +133,7 @@ static XpmSaveInterface xpmint = -MAIN (); +MAIN () static void query () diff --git a/plug-ins/dbbrowser/dbbrowser.c b/plug-ins/dbbrowser/dbbrowser.c index 758747601f..183ac12e5b 100644 --- a/plug-ins/dbbrowser/dbbrowser.c +++ b/plug-ins/dbbrowser/dbbrowser.c @@ -63,7 +63,7 @@ GPlugInInfo PLUG_IN_INFO = }; -MAIN (); +MAIN () static void query () diff --git a/plug-ins/dbbrowser/procedure-browser.c b/plug-ins/dbbrowser/procedure-browser.c index 758747601f..183ac12e5b 100644 --- a/plug-ins/dbbrowser/procedure-browser.c +++ b/plug-ins/dbbrowser/procedure-browser.c @@ -63,7 +63,7 @@ GPlugInInfo PLUG_IN_INFO = }; -MAIN (); +MAIN () static void query () diff --git a/plug-ins/emboss/emboss.c b/plug-ins/emboss/emboss.c index 697fd7646c..b96238fa0b 100644 --- a/plug-ins/emboss/emboss.c +++ b/plug-ins/emboss/emboss.c @@ -210,7 +210,7 @@ run(gchar *name, gint nparam, GParam *param, } #define pixelScale 255.9 -void +static void EmbossInit(gdouble azimuth, gdouble elevation, gushort width45) { /* * compute the light vector from the input parameters. @@ -250,7 +250,7 @@ EmbossInit(gdouble azimuth, gdouble elevation, gushort width45) { * */ -void +static inline void EmbossRow(guchar *src, guchar *texture, guchar *dst, guint xSize, guint bypp, gint alpha) { glong Nx, Ny, NdotL; diff --git a/plug-ins/exchange/exchange.c b/plug-ins/exchange/exchange.c index 0f4a4b291e..ad4b8784cb 100644 --- a/plug-ins/exchange/exchange.c +++ b/plug-ins/exchange/exchange.c @@ -334,7 +334,7 @@ int doDialog() GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); gtk_signal_connect_object (GTK_OBJECT(button), "clicked", (GtkSignalFunc) gtk_widget_destroy, - dialog); + GTK_OBJECT(dialog)); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->action_area), button, TRUE, TRUE, 0); gtk_widget_show(button); diff --git a/plug-ins/faxg3/faxg3.c b/plug-ins/faxg3/faxg3.c index a3dd7b5675..c9d93f5c20 100644 --- a/plug-ins/faxg3/faxg3.c +++ b/plug-ins/faxg3/faxg3.c @@ -35,7 +35,7 @@ /* Declare local functions. */ gint32 emitgimp (int, int, char *, int, char *); -static void query (void); +void query (void); static void run (char *name, int nparams, GParam *param, @@ -53,7 +53,7 @@ GPlugInInfo PLUG_IN_INFO = MAIN () -static void query () +void query () { static GParamDef load_args[] = { diff --git a/plug-ins/faxg3/g3.c b/plug-ins/faxg3/g3.c index 6bf658be17..f2f6bc0797 100644 --- a/plug-ins/faxg3/g3.c +++ b/plug-ins/faxg3/g3.c @@ -1,4 +1,4 @@ -#ident "@(#)g3.c 3.1 95/08/30 Copyright (c) Gert Doering" +/* #ident "@(#)g3.c 3.1 95/08/30 Copyright (c) Gert Doering" */ #include #include diff --git a/plug-ins/gbr/gbr.c b/plug-ins/gbr/gbr.c index 64dbb1e074..5073a7b490 100644 --- a/plug-ins/gbr/gbr.c +++ b/plug-ins/gbr/gbr.c @@ -253,7 +253,7 @@ static gint32 load_image (char *filename) { g_free(buffer); return -1; } - gimp_pixel_rgn_set_row(&pixel_rgn, buffer, 0, line, ph.width); + gimp_pixel_rgn_set_row(&pixel_rgn, (guchar *)buffer, 0, line, ph.width); gimp_progress_update((double) line / (double) ph.height); } diff --git a/plug-ins/gif/gif.c b/plug-ins/gif/gif.c index 8df4d2f68c..e960c894d1 100644 --- a/plug-ins/gif/gif.c +++ b/plug-ins/gif/gif.c @@ -841,8 +841,8 @@ DoExtension (FILE *fd, ; return FALSE; default: - str = buf; - sprintf (buf, "UNKNOWN (0x%02x)", label); + str = (char *)buf; + sprintf ((char *)buf, "UNKNOWN (0x%02x)", label); break; } diff --git a/plug-ins/gqbist/gqbist.c b/plug-ins/gqbist/gqbist.c index 6de8321ceb..06b0850838 100644 --- a/plug-ins/gqbist/gqbist.c +++ b/plug-ins/gqbist/gqbist.c @@ -374,7 +374,7 @@ void run(char *name, int nparams, GParam *param, int *nreturn_vals, GParam **ret gimp_progress_init ("Qbist ..."); for (row=sel_y1; rowpreview_data) - ifsD->preview_data = g_new(gchar,3*width*height); + ifsD->preview_data = g_new(guchar,3*width*height); gimp_palette_get_background ( &rc, &gc, &bc ); diff --git a/plug-ins/iwarp/iwarp.c b/plug-ins/iwarp/iwarp.c index 0b27751966..57c683258b 100644 --- a/plug-ins/iwarp/iwarp.c +++ b/plug-ins/iwarp/iwarp.c @@ -215,7 +215,7 @@ static int frame_number; static int layer_alpha; -MAIN (); +MAIN () static void query () @@ -592,7 +592,7 @@ iwarp_layer_copy(gint32 layerID) -void iwarp() +static void iwarp() { int i; gint32 layerID; diff --git a/plug-ins/max_rgb/max_rgb.c b/plug-ins/max_rgb/max_rgb.c index ecff99e220..4aa979e113 100644 --- a/plug-ins/max_rgb/max_rgb.c +++ b/plug-ins/max_rgb/max_rgb.c @@ -110,7 +110,7 @@ static Interface INTERFACE = { FALSE }; gint hold_max; gint hold_min; -MAIN (); +MAIN () static void query () @@ -169,7 +169,7 @@ run (char *name, /* Since a channel might be selected, we must check wheter RGB or not. */ if (!gimp_drawable_color(drawable_id)) { - ERROR_DIALOG (1, "RGB drawable is not selected."); + ERROR_DIALOG (1, (guchar *)"RGB drawable is not selected."); return; } if (! DIALOG ()) diff --git a/plug-ins/maze/maze_face.c b/plug-ins/maze/maze_face.c index b1b7815baf..e06d05bff9 100644 --- a/plug-ins/maze/maze_face.c +++ b/plug-ins/maze/maze_face.c @@ -633,7 +633,7 @@ maze_close_callback (GtkWidget *widget, static void maze_help (GtkWidget *widget, gpointer foo) { - void *bar; + void *bar=(void *)NULL; gint baz; if (gimp_query_procedure("extension_web_browser", diff --git a/plug-ins/megawidget/megawidget.c b/plug-ins/megawidget/megawidget.c index 9d61927331..19911a0bfd 100644 --- a/plug-ins/megawidget/megawidget.c +++ b/plug-ins/megawidget/megawidget.c @@ -309,7 +309,7 @@ struct mwColorSel * mw_color_select_button_create( GtkWidget *button; struct mwColorSel *cs = g_new(struct mwColorSel,1); - cs->name = name; + cs->name = (guchar *)name; cs->color = color; cs->opacity = opacity; cs->window = NULL; @@ -344,7 +344,7 @@ void mw_ientry_new(GtkWidget *parent, gchar *fname, sprintf (buffer, "%d", *varp); mw_entry_new(parent, fname, name, - varp, buffer, + varp, (guchar *)buffer, (GtkCallback)ui_ientry_alone_callback); } @@ -355,7 +355,7 @@ void mw_fentry_new(GtkWidget *parent, gchar *fname, sprintf (buffer, "%f0.3", *varp); mw_entry_new(parent, fname, name, - varp, buffer, + varp, (guchar *)buffer, (GtkCallback)ui_fentry_alone_callback); } @@ -545,7 +545,7 @@ mw_entry_new(GtkWidget *parent, gchar *fname, entry = gtk_entry_new(); gtk_box_pack_start (GTK_BOX (hbox), entry, TRUE, TRUE, 0); gtk_widget_set_usize (entry, 75, 0); - gtk_entry_set_text (GTK_ENTRY (entry), buffer); + gtk_entry_set_text (GTK_ENTRY (entry), (const gchar *)buffer); gtk_signal_connect (GTK_OBJECT (entry), "changed", (GtkSignalFunc) entry_cb, variablep); @@ -781,7 +781,7 @@ create_color_selection (GtkWidget *widget, struct mwColorSel *cs) { if (!(cs->window)) { - cs->window = gtk_color_selection_dialog_new (cs->name); + cs->window = gtk_color_selection_dialog_new ((const gchar *)cs->name); cs->savcolor[0]=cs->color[0]; /* For the cancel .... */ cs->savcolor[1]=cs->color[1]; cs->savcolor[2]=cs->color[2]; diff --git a/plug-ins/mpeg/mpeg.c b/plug-ins/mpeg/mpeg.c index a0697c54da..7dd57ff9f8 100644 --- a/plug-ins/mpeg/mpeg.c +++ b/plug-ins/mpeg/mpeg.c @@ -276,7 +276,7 @@ load_image (char *filename) plugin. */ - moreframes = GetMPEGFrame(data); + moreframes = GetMPEGFrame((char *)data); if (!moreframes) break; if (delay > 0) diff --git a/plug-ins/nlfilt/nlfilt.c b/plug-ins/nlfilt/nlfilt.c index 7774a76651..768aabf60a 100644 --- a/plug-ins/nlfilt/nlfilt.c +++ b/plug-ins/nlfilt/nlfilt.c @@ -471,7 +471,7 @@ gint noisevariance; /* global so that pixel processing code can get at it q #define RUNSCALE(x) (((x) + (1 << (SCALEB-1))) >> SCALEB) /* rounded un-scale */ #define UNSCALE(x) ((x) >> SCALEB) -void +static void nlfiltRow(guchar *src, guchar *dst, gint width, gint Bpp, gint filtno) { gint x, po, no; gint pf[9]; @@ -524,7 +524,7 @@ gint AVEDIV[7 * NOCSVAL]; /* divide by 7 to give average value */ gint SQUARE[2 * NOCSVAL]; /* scaled square lookup table */ /* Table initialisation function - return alpha range */ -gint +static inline gint nlfiltInit(gdouble alpha, gdouble radius, FilterType filter) { gint alpharange; /* alpha range value 0 - 3 */ gdouble meanscale; /* scale for finding mean */ diff --git a/plug-ins/pcx/pcx.c b/plug-ins/pcx/pcx.c index ea17400619..fcc5f0782e 100644 --- a/plug-ins/pcx/pcx.c +++ b/plug-ins/pcx/pcx.c @@ -366,7 +366,7 @@ static void readline(FILE *fp, guchar *buffer, int bytes) { } } -gint save_image (char *filename, gint32 image, gint32 layer) { +static gint save_image (char *filename, gint32 image, gint32 layer) { FILE *fp; GPixelRgn pixel_rgn; GDrawable *drawable; diff --git a/plug-ins/plasma/plasma.c b/plug-ins/plasma/plasma.c index 880a3b32eb..14bb1050ce 100644 --- a/plug-ins/plasma/plasma.c +++ b/plug-ins/plasma/plasma.c @@ -309,8 +309,8 @@ plasma_dialog() entry = gtk_entry_new (); gtk_table_attach (GTK_TABLE (table), entry, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 0, 0 ); gtk_widget_set_usize( entry, ENTRY_WIDTH, 0 ); - sprintf( buffer, "%d", pvals.seed ); - gtk_entry_set_text (GTK_ENTRY (entry), buffer ); + sprintf( (char *)buffer, "%d", pvals.seed ); + gtk_entry_set_text (GTK_ENTRY (entry), (gchar *)buffer ); gtk_signal_connect (GTK_OBJECT (entry), "changed", (GtkSignalFunc) plasma_entry_callback, &pvals.seed); diff --git a/plug-ins/pnm/pnm.c b/plug-ins/pnm/pnm.c index 556b94fd01..3028b895d0 100644 --- a/plug-ins/pnm/pnm.c +++ b/plug-ins/pnm/pnm.c @@ -457,7 +457,7 @@ load_image (char *filename) } -void +static void pnm_load_ascii (PNMScanner *scan, PNMInfo *info, GPixelRgn *pixel_rgn) @@ -517,7 +517,7 @@ pnm_load_ascii (PNMScanner *scan, g_free (data); } -void +static void pnm_load_raw (PNMScanner *scan, PNMInfo *info, GPixelRgn *pixel_rgn) @@ -564,7 +564,7 @@ pnm_load_raw (PNMScanner *scan, } void -pnm_load_rawpbm (PNMScanner *scan, +static pnm_load_rawpbm (PNMScanner *scan, PNMInfo *info, GPixelRgn *pixel_rgn) { @@ -936,7 +936,7 @@ save_dialog () * Creates a new scanner based on a file descriptor. The * look ahead buffer is one character initially. */ -PNMScanner * +static PNMScanner * pnmscanner_create (int fd) { PNMScanner *s; @@ -952,7 +952,7 @@ pnmscanner_create (int fd) /* pnmscanner_destroy --- * Destroys a scanner and its resources. Doesn't close the fd. */ -void +static void pnmscanner_destroy (PNMScanner *s) { if (s->inbuf) g_free(s->inbuf); @@ -962,7 +962,7 @@ pnmscanner_destroy (PNMScanner *s) /* pnmscanner_createbuffer --- * Creates a buffer so we can do buffered reads. */ -void +static void pnmscanner_createbuffer (PNMScanner *s, int bufsize) { @@ -975,7 +975,7 @@ pnmscanner_createbuffer (PNMScanner *s, /* pnmscanner_gettoken --- * Gets the next token, eating any leading whitespace. */ -void +static void pnmscanner_gettoken (PNMScanner *s, char *buf, int bufsize) @@ -994,7 +994,7 @@ pnmscanner_gettoken (PNMScanner *s, /* pnmscanner_getchar --- * Reads a character from the input stream */ -void +static void pnmscanner_getchar (PNMScanner *s) { if (s->inbuf) @@ -1017,7 +1017,7 @@ pnmscanner_getchar (PNMScanner *s) * Eats up whitespace from the input and returns when done or eof. * Also deals with comments. */ -void +static void pnmscanner_eatwhitespace (PNMScanner *s) { int state = 0; diff --git a/plug-ins/print/print-escp2.c b/plug-ins/print/print-escp2.c index ef1717885f..3b607df27e 100644 --- a/plug-ins/print/print-escp2.c +++ b/plug-ins/print/print-escp2.c @@ -27,6 +27,25 @@ * Revision History: * * $Log$ + * Revision 1.3 1998/03/19 02:11:40 adrian + * *AlienMap/AlienMap.c CEL/CEL.c CML_explorer/CML_explorer.c + * align_layers/align_layers.c animationplay/animationplay.c + * bmp/bmpwrite.c dbbrowser/dbbrowser.c emboss/emboss.c + * exchange/exchange.c faxg3/faxg3.c faxg3/g3.c gbr/gbr.c + * gif/gif.c gqbist/gqbist.c hot/hot.c ifscompose/ifscompose.c + * iwarp/iwarp.c max_rgb/max_rgb.c maze/maze_face.c + * megawidget/megawidget.c mpeg/mpeg.c nlfilt/nlfilt.c pcx/pcx.c + * plasma/plasma.c pnm/pnm.c print/print-escp2.c + * print/print-pcl.c print/print.c scatter_hsv/scatter_hsv.c + * script-fu/script-fu-scripts.c script-fu/script-fu.c + * sinus/sinus.c tga/tga.c tileit/tileit.c + * vpropagate/vpropagate.c xpm/xpm.c: More picky picky ansi type + * stuff from gimp-hpux-980316.patch. + * + * isnt big patches fun? + * + * -adrian + * * Revision 1.2 1998/01/25 09:29:25 yosh * Plugin updates * Properly generated aa Makefile (still not built by default) @@ -466,7 +485,7 @@ escp2_print(FILE *prn, /* I - Print file or command */ * 'escp2_write()' - Send ESC/P2 graphics using TIFF packbits compression. */ -void +static void escp2_write(FILE *prn, /* I - Print file or command */ unsigned char *line, /* I - Output bitmap data */ int length, /* I - Length of bitmap data */ diff --git a/plug-ins/print/print-pcl.c b/plug-ins/print/print-pcl.c index 9f1ca49922..7d42196bab 100644 --- a/plug-ins/print/print-pcl.c +++ b/plug-ins/print/print-pcl.c @@ -28,6 +28,25 @@ * Revision History: * * $Log$ + * Revision 1.3 1998/03/19 02:11:41 adrian + * *AlienMap/AlienMap.c CEL/CEL.c CML_explorer/CML_explorer.c + * align_layers/align_layers.c animationplay/animationplay.c + * bmp/bmpwrite.c dbbrowser/dbbrowser.c emboss/emboss.c + * exchange/exchange.c faxg3/faxg3.c faxg3/g3.c gbr/gbr.c + * gif/gif.c gqbist/gqbist.c hot/hot.c ifscompose/ifscompose.c + * iwarp/iwarp.c max_rgb/max_rgb.c maze/maze_face.c + * megawidget/megawidget.c mpeg/mpeg.c nlfilt/nlfilt.c pcx/pcx.c + * plasma/plasma.c pnm/pnm.c print/print-escp2.c + * print/print-pcl.c print/print.c scatter_hsv/scatter_hsv.c + * script-fu/script-fu-scripts.c script-fu/script-fu.c + * sinus/sinus.c tga/tga.c tileit/tileit.c + * vpropagate/vpropagate.c xpm/xpm.c: More picky picky ansi type + * stuff from gimp-hpux-980316.patch. + * + * isnt big patches fun? + * + * -adrian + * * Revision 1.2 1998/01/25 09:29:26 yosh * Plugin updates * Properly generated aa Makefile (still not built by default) @@ -508,7 +527,7 @@ pcl_print(FILE *prn, /* I - Print file or command */ * 'pcl_mode0()' - Send PCL graphics using mode 0 (no) compression. */ -void +static void pcl_mode0(FILE *prn, /* I - Print file or command */ unsigned char *line, /* I - Output bitmap data */ int length, /* I - Length of bitmap data */ @@ -523,7 +542,7 @@ pcl_mode0(FILE *prn, /* I - Print file or command */ * 'pcl_mode2()' - Send PCL graphics using mode 2 (TIFF) compression. */ -void +static void pcl_mode2(FILE *prn, /* I - Print file or command */ unsigned char *line, /* I - Output bitmap data */ int length, /* I - Length of bitmap data */ diff --git a/plug-ins/print/print.c b/plug-ins/print/print.c index ef538ef0b7..469cee6bda 100644 --- a/plug-ins/print/print.c +++ b/plug-ins/print/print.c @@ -39,6 +39,25 @@ * Revision History: * * $Log$ + * Revision 1.3 1998/03/19 02:11:42 adrian + * *AlienMap/AlienMap.c CEL/CEL.c CML_explorer/CML_explorer.c + * align_layers/align_layers.c animationplay/animationplay.c + * bmp/bmpwrite.c dbbrowser/dbbrowser.c emboss/emboss.c + * exchange/exchange.c faxg3/faxg3.c faxg3/g3.c gbr/gbr.c + * gif/gif.c gqbist/gqbist.c hot/hot.c ifscompose/ifscompose.c + * iwarp/iwarp.c max_rgb/max_rgb.c maze/maze_face.c + * megawidget/megawidget.c mpeg/mpeg.c nlfilt/nlfilt.c pcx/pcx.c + * plasma/plasma.c pnm/pnm.c print/print-escp2.c + * print/print-pcl.c print/print.c scatter_hsv/scatter_hsv.c + * script-fu/script-fu-scripts.c script-fu/script-fu.c + * sinus/sinus.c tga/tga.c tileit/tileit.c + * vpropagate/vpropagate.c xpm/xpm.c: More picky picky ansi type + * stuff from gimp-hpux-980316.patch. + * + * isnt big patches fun? + * + * -adrian + * * Revision 1.2 1998/01/25 09:29:27 yosh * Plugin updates * Properly generated aa Makefile (still not built by default) @@ -521,7 +540,7 @@ run(char *name, /* I - Name of print program. */ * 'print_dialog()' - Pop up the print dialog... */ -int +static int print_dialog(void) { int i; /* Looping var */ diff --git a/plug-ins/scatter_hsv/scatter_hsv.c b/plug-ins/scatter_hsv/scatter_hsv.c index 4a27b97da4..49c9f53c35 100644 --- a/plug-ins/scatter_hsv/scatter_hsv.c +++ b/plug-ins/scatter_hsv/scatter_hsv.c @@ -144,7 +144,7 @@ gint preview_dragging = FALSE; gint preview_drag_start_x = 0; gint preview_drag_start_y = 0; -MAIN (); +MAIN () static void query () @@ -202,7 +202,7 @@ run (char *name, gimp_get_data (PLUG_IN_NAME, &VALS); if (!gimp_drawable_color(drawable_id)) { - scatter_hsv_error_dialog (1, "RGB drawable is not selected."); + scatter_hsv_error_dialog (1, (guchar *)"RGB drawable is not selected."); return; } if (! DIALOG ()) @@ -627,7 +627,7 @@ ERROR_DIALOG (gint gtk_was_not_initialized, guchar *message) gtk_container_border_width (GTK_CONTAINER (table), 10); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), table, TRUE, TRUE, 0); - label = gtk_label_new (message); + label = gtk_label_new ((char *)message); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_FILL|GTK_EXPAND, 0, 0, 0); diff --git a/plug-ins/script-fu/script-fu-interface.c b/plug-ins/script-fu/script-fu-interface.c index 45f077c1a4..20ccd46f20 100644 --- a/plug-ins/script-fu/script-fu-interface.c +++ b/plug-ins/script-fu/script-fu-interface.c @@ -770,12 +770,12 @@ script_fu_interface (SFScript *script) sf_interface.script = script; - title = g_new (char, strlen ("Script-Fu: ") + strlen (script->description) + 1); - sprintf (title, "Script-Fu: %s", script->description); + title = g_new (guchar, strlen ("Script-Fu: ") + strlen (script->description) + 1); + sprintf ((char *)title, "Script-Fu: %s", script->description); dlg = gtk_dialog_new (); gtk_quit_add_destroy (1, GTK_OBJECT (dlg)); - gtk_window_set_title (GTK_WINDOW (dlg), title); + gtk_window_set_title (GTK_WINDOW (dlg), (const gchar *)title); gtk_signal_connect (GTK_OBJECT (dlg), "destroy", (GtkSignalFunc) script_fu_close_callback, NULL); diff --git a/plug-ins/script-fu/script-fu-scripts.c b/plug-ins/script-fu/script-fu-scripts.c index 45f077c1a4..20ccd46f20 100644 --- a/plug-ins/script-fu/script-fu-scripts.c +++ b/plug-ins/script-fu/script-fu-scripts.c @@ -770,12 +770,12 @@ script_fu_interface (SFScript *script) sf_interface.script = script; - title = g_new (char, strlen ("Script-Fu: ") + strlen (script->description) + 1); - sprintf (title, "Script-Fu: %s", script->description); + title = g_new (guchar, strlen ("Script-Fu: ") + strlen (script->description) + 1); + sprintf ((char *)title, "Script-Fu: %s", script->description); dlg = gtk_dialog_new (); gtk_quit_add_destroy (1, GTK_OBJECT (dlg)); - gtk_window_set_title (GTK_WINDOW (dlg), title); + gtk_window_set_title (GTK_WINDOW (dlg), (const gchar *)title); gtk_signal_connect (GTK_OBJECT (dlg), "destroy", (GtkSignalFunc) script_fu_close_callback, NULL); diff --git a/plug-ins/script-fu/script-fu.c b/plug-ins/script-fu/script-fu.c index d273918f91..94f6e956f5 100644 --- a/plug-ins/script-fu/script-fu.c +++ b/plug-ins/script-fu/script-fu.c @@ -96,7 +96,7 @@ static gint script_fu_base = TRUE; extern gint server_mode; -MAIN (); +MAIN () static void sfquit () diff --git a/plug-ins/sinus/sinus.c b/plug-ins/sinus/sinus.c index 7fb250d3bd..86245ec839 100644 --- a/plug-ins/sinus/sinus.c +++ b/plug-ins/sinus/sinus.c @@ -596,12 +596,12 @@ int sinus_dialog(void) gtk_box_pack_start(GTK_BOX(vbox), logo, TRUE, FALSE, 0); gtk_widget_show(logo); - data= logo_data; + data= (guchar *)logo_data; for (y=0;y<100; y++) { for (x=0; x<100; x++) { HEADER_PIXEL(data,(&buf[3*x])); } - gtk_preview_draw_row(GTK_PREVIEW(logo), buf, 0, y, 100); + gtk_preview_draw_row(GTK_PREVIEW(logo), (guchar *)buf, 0, y, 100); } #endif diff --git a/plug-ins/tga/tga.c b/plug-ins/tga/tga.c index 915c2e4d30..513c4f357b 100644 --- a/plug-ins/tga/tga.c +++ b/plug-ins/tga/tga.c @@ -188,7 +188,7 @@ GPlugInInfo PLUG_IN_INFO = }; -MAIN (); +MAIN () #ifdef VERBOSE static int verbose = VERBOSE; @@ -1101,7 +1101,7 @@ ReadImage (FILE *fp, struct tga_header *hdr, char *filename) } /*read_image*/ -gint +static gint save_image (char *filename, gint32 image_ID, gint32 drawable_ID) @@ -1127,8 +1127,8 @@ save_image (char *filename, height = drawable->height; name_buf = (guchar *) g_malloc(strlen(filename) + 11); - sprintf(name_buf, "Saving %s:", filename); - gimp_progress_init(name_buf); + sprintf((char *)name_buf, "Saving %s:", filename); + gimp_progress_init((char *)name_buf); g_free(name_buf); memset (&hdr, 0, sizeof (hdr)); diff --git a/plug-ins/tileit/tileit.c b/plug-ins/tileit/tileit.c index 90f06e72f8..07700b5a49 100644 --- a/plug-ins/tileit/tileit.c +++ b/plug-ins/tileit/tileit.c @@ -140,7 +140,7 @@ static TileItVals itvals = typedef enum { ALL, ALT, - EXPLICT, + EXPLICT } AppliedTo; typedef struct { diff --git a/plug-ins/vpropagate/vpropagate.c b/plug-ins/vpropagate/vpropagate.c index ca6868b269..3242c06bfe 100644 --- a/plug-ins/vpropagate/vpropagate.c +++ b/plug-ins/vpropagate/vpropagate.c @@ -225,7 +225,7 @@ typedef struct static VPInterface vpropagate_interface = { FALSE }; gint drawable_id; -MAIN (); +MAIN () static void query () diff --git a/plug-ins/xpm/xpm.c b/plug-ins/xpm/xpm.c index 42b3b21071..1f663166ff 100644 --- a/plug-ins/xpm/xpm.c +++ b/plug-ins/xpm/xpm.c @@ -133,7 +133,7 @@ static XpmSaveInterface xpmint = -MAIN (); +MAIN () static void query () -- GitLab