diff options
author | Justin Maurer <justin@src.gnome.org> | 1999-06-06 16:10:08 +0000 |
---|---|---|
committer | Justin Maurer <justin@src.gnome.org> | 1999-06-06 16:10:08 +0000 |
commit | 64a1c62f75abca88d38e59c3c6f7bbeb72b4df2c (patch) | |
tree | 3c9697fa3ad3507980ca040fecab6f016f39a65e /slashapp | |
parent | 8a0583395a92ac58e0cdc215ac183d3ffcbd3a0b (diff) |
won't crash when you do "about" now
oops
Diffstat (limited to 'slashapp')
-rw-r--r-- | slashapp/slashapp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/slashapp/slashapp.c b/slashapp/slashapp.c index f005cf45d..02acf3bb5 100644 --- a/slashapp/slashapp.c +++ b/slashapp/slashapp.c @@ -121,9 +121,8 @@ static void about_cb(AppletWidget *widget, gpointer data) const gchar *authors[5]; gchar version[32]; - sprintf(version, 32, _("%d %d %d"), APPLET_VERSION_MAJ, - APPLET_VERSION_MIN, APPLET_VERSION_REV); - + sprintf(version, _("%d.%d.%d"), APPLET_VERSION_MAJ, + APPLET_VERSION_MIN, APPLET_VERSION_REV); authors[0] = _("Justin Maurer <justin@slashdot.org>"); authors[1] = _("John Ellis <johne@bellatlantic.net>"); authors[2] = _("Craig Small <csmall@eye-net.com.au>"); |