diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-10 03:49:29 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-10 03:49:29 +0800 |
commit | d2ef306a999add09fec5bea2298955c4b75df607 (patch) | |
tree | 7ad2718fe7a32d7cbf5439053c5a6f196d8c417f | |
parent | c8712d81153e82aaa5ded7bb2e004be5621dc871 (diff) | |
download | gsoc2013-evolution-d2ef306a999add09fec5bea2298955c4b75df607.tar gsoc2013-evolution-d2ef306a999add09fec5bea2298955c4b75df607.tar.gz gsoc2013-evolution-d2ef306a999add09fec5bea2298955c4b75df607.tar.bz2 gsoc2013-evolution-d2ef306a999add09fec5bea2298955c4b75df607.tar.lz gsoc2013-evolution-d2ef306a999add09fec5bea2298955c4b75df607.tar.xz gsoc2013-evolution-d2ef306a999add09fec5bea2298955c4b75df607.tar.zst gsoc2013-evolution-d2ef306a999add09fec5bea2298955c4b75df607.zip |
Fixed some warnings.
2000-08-09 Christopher James Lahey <clahey@helixcode.com>
* e-setup.c, e-shell.c: Fixed some warnings.
svn path=/trunk/; revision=4661
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-setup.c | 1 | ||||
-rw-r--r-- | shell/e-shell.c | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 505a5d8950..56dd6665a4 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,9 @@ 2000-08-09 Christopher James Lahey <clahey@helixcode.com> + * e-setup.c, e-shell.c: Fixed some warnings. + +2000-08-09 Christopher James Lahey <clahey@helixcode.com> + * e-shell-view.c: Fixed a warning. 2000-08-09 Ettore Perazzoli <ettore@helixcode.com> diff --git a/shell/e-setup.c b/shell/e-setup.c index 6ee7abcbb7..3393247f35 100644 --- a/shell/e-setup.c +++ b/shell/e-setup.c @@ -100,7 +100,6 @@ e_setup (const char *evolution_directory) { struct stat statinfo; char *file; - int i; if (stat (evolution_directory, &statinfo) != 0) return copy_default_stuff (evolution_directory); diff --git a/shell/e-shell.c b/shell/e-shell.c index 89ebe2f20e..6f00a43584 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -620,7 +620,7 @@ save_settings_for_views (EShell *shell) } prefix = g_strdup_printf ("=%s/config/Shell=/Views/NumberOfViews", - priv->local_directory, i); + priv->local_directory); gnome_config_set_int (prefix, g_list_length (priv->views)); g_free (prefix); |