--- grip-3.3.1.old/src/grip.c	2005-06-26 03:00:55.000000000 +0900
+++ grip-3.3.1/src/grip.c	2006-08-12 00:55:39.186498250 +0900
@@ -541,7 +541,7 @@
   GtkWidget *logo;
   GtkWidget *ebox;
   GtkWidget *button;
-  char versionbuf[20];
+  gchar *versionbuf;
 
   aboutpage=MakeNewPage(uinfo->notebook,_("About"));
 
@@ -562,8 +562,10 @@
 
   vbox2=gtk_vbox_new(TRUE,0);
 
-  sprintf(versionbuf,_("Version %s"),VERSION);
+  versionbuf = g_strdup_printf(_("Version %s"),VERSION);
   label=gtk_label_new(versionbuf);
+  g_free(versionbuf);
+
   gtk_widget_set_style(label,uinfo->style_wb);
   gtk_box_pack_start(GTK_BOX(vbox2),label,FALSE,FALSE,0);
   gtk_widget_show(label);
