lpr: Fix various compiler warnings

gcc 11 is warning about some const mixups here.
Fix them.
This commit is contained in:
Matthias Clasen 2021-03-17 07:56:07 -04:00
parent 600cbdb7ba
commit 6d5657eee7

View File

@ -103,7 +103,7 @@ char **
g_io_module_query (void)
{
char *eps[] = {
GTK_PRINT_BACKEND_EXTENSION_POINT_NAME,
(char *)GTK_PRINT_BACKEND_EXTENSION_POINT_NAME,
NULL
};
@ -399,13 +399,12 @@ lpr_printer_get_options (GtkPrinter *printer,
GtkPrinterOptionSet *set;
GtkPrinterOption *option;
const char *command;
char *n_up[] = {"1", "2", "4", "6", "9", "16" };
const char *n_up[] = {"1", "2", "4", "6", "9", "16" };
set = gtk_printer_option_set_new ();
option = gtk_printer_option_new ("gtk-n-up", _("Pages Per Sheet"), GTK_PRINTER_OPTION_TYPE_PICKONE);
gtk_printer_option_choices_from_array (option, G_N_ELEMENTS (n_up),
(char **)n_up, (char **)n_up);
gtk_printer_option_choices_from_array (option, G_N_ELEMENTS (n_up), n_up, n_up);
gtk_printer_option_set (option, "1");
gtk_printer_option_set_add (set, option);
g_object_unref (option);