From Graeme Hewson: varargs code cleanup in "simple_dialog.c".

svn path=/trunk/; revision=5617
This commit is contained in:
Guy Harris 2002-06-04 11:24:35 +00:00
parent bc5a543e03
commit f103a8a076
2 changed files with 3 additions and 1 deletions

View File

@ -906,6 +906,7 @@ Graeme Hewson <graeme.hewson[AT]oracle.com> {
Fix various capture problems
Add some sanity checks to DNS dissector to avoid loops
Command-line interface cleanups
Varargs code cleanup in "simple_dialog.c"
}
Pasi Eronen <pasi.eronen[at]nixu.com> {

View File

@ -1,7 +1,7 @@
/* simple_dialog.c
* Simple message dialog box routines.
*
* $Id: simple_dialog.c,v 1.9 2002/03/05 11:56:00 guy Exp $
* $Id: simple_dialog.c,v 1.10 2002/06/04 11:24:35 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -122,6 +122,7 @@ simple_dialog(gint type, gint *btn_mask, gchar *msg_format, ...) {
/* Load our vararg list into the message string */
va_start(ap, msg_format);
vsnprintf(message, ESD_MAX_MSG_LEN, msg_format, ap);
va_end(ap);
msg_label = gtk_label_new(message);
gtk_label_set_justify(GTK_LABEL(msg_label), GTK_JUSTIFY_FILL);