diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2004-03-13 15:15:26 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2004-03-13 15:15:26 +0000 |
commit | 7b62a629e8f053cd28f3882769c2e55457cc88f8 (patch) | |
tree | 2a63a504c6672fed9d3c15392cc5dbe9aa2238f5 /gtk/simple_dialog.c | |
parent | 47b176f9837829c36b008496e6406448fdc645d2 (diff) | |
download | wireshark-7b62a629e8f053cd28f3882769c2e55457cc88f8.tar.gz wireshark-7b62a629e8f053cd28f3882769c2e55457cc88f8.tar.bz2 wireshark-7b62a629e8f053cd28f3882769c2e55457cc88f8.zip |
replaced sprintf / snprintf by g_snprintf,
various other string related changes
svn path=/trunk/; revision=10373
Diffstat (limited to 'gtk/simple_dialog.c')
-rw-r--r-- | gtk/simple_dialog.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gtk/simple_dialog.c b/gtk/simple_dialog.c index 253124579a..07a2cb3730 100644 --- a/gtk/simple_dialog.c +++ b/gtk/simple_dialog.c @@ -1,7 +1,7 @@ /* simple_dialog.c * Simple message dialog box routines. * - * $Id: simple_dialog.c,v 1.28 2004/02/23 00:05:50 guy Exp $ + * $Id: simple_dialog.c,v 1.29 2004/03/13 15:15:25 ulfl Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -30,10 +30,6 @@ #include <stdio.h> -#ifdef NEED_SNPRINTF_H -# include "snprintf.h" -#endif - #include "gtkglobals.h" #include "simple_dialog.h" #include "dlg_utils.h" |