From: Jens Axboe Date: Thu, 18 Apr 2013 12:22:37 +0000 (-0700) Subject: gerror: mixed code/data section X-Git-Tag: fio-2.1~21 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=cab2440c23426b06e7e8327c5353fbd8373dcb5a;ds=sidebyside gerror: mixed code/data section Signed-off-by: Jens Axboe --- diff --git a/gerror.c b/gerror.c index 30367381..43bdabae 100644 --- a/gerror.c +++ b/gerror.c @@ -24,6 +24,8 @@ static void report_error(struct gui_entry *ge, GError *error) struct gui *ui = ge->ui; if (ui->error_info_bar == NULL) { + GtkWidget *container; + ui->error_info_bar = gtk_info_bar_new_with_buttons(GTK_STOCK_OK, GTK_RESPONSE_OK, NULL); g_signal_connect(ui->error_info_bar, "response", G_CALLBACK(on_info_bar_response), ui); @@ -31,7 +33,7 @@ static void report_error(struct gui_entry *ge, GError *error) GTK_MESSAGE_ERROR); ui->error_label = gtk_label_new(error->message); - GtkWidget *container = gtk_info_bar_get_content_area(GTK_INFO_BAR(ui->error_info_bar)); + container = gtk_info_bar_get_content_area(GTK_INFO_BAR(ui->error_info_bar)); gtk_container_add(GTK_CONTAINER(container), ui->error_label); gtk_box_pack_start(GTK_BOX(ui->vbox), ui->error_info_bar, FALSE, FALSE, 0);