diff options
author | Dan Winship <danw@src.gnome.org> | 2000-03-23 00:50:41 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-03-23 00:50:41 +0800 |
commit | af50786d6f38bccab9b4ec69a5268668cb440191 (patch) | |
tree | b59df088e55ae3bb25ebd864c84bdb1574ec66a4 | |
parent | f286676ead838f371de0096b6bfd3c46748d84ec (diff) | |
download | gsoc2013-evolution-af50786d6f38bccab9b4ec69a5268668cb440191.tar gsoc2013-evolution-af50786d6f38bccab9b4ec69a5268668cb440191.tar.gz gsoc2013-evolution-af50786d6f38bccab9b4ec69a5268668cb440191.tar.bz2 gsoc2013-evolution-af50786d6f38bccab9b4ec69a5268668cb440191.tar.lz gsoc2013-evolution-af50786d6f38bccab9b4ec69a5268668cb440191.tar.xz gsoc2013-evolution-af50786d6f38bccab9b4ec69a5268668cb440191.tar.zst gsoc2013-evolution-af50786d6f38bccab9b4ec69a5268668cb440191.zip |
fix an obvious bug pointed out by gcc
svn path=/trunk/; revision=2142
-rw-r--r-- | e-util/e-setup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/e-util/e-setup.c b/e-util/e-setup.c index 28a43e3a22..63d376d310 100644 --- a/e-util/e-setup.c +++ b/e-util/e-setup.c @@ -38,7 +38,8 @@ e_setup_base_dir (void) _("Evolution detected that the file `%s' is a not a directory.\n" "\n" "Evolution can rename the file, delete the file or shutdown and\n" - "let you fix the problem.")); + "let you fix the problem."), + evolution_dir); return FALSE; } } |