aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-09 13:41:40 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-09 13:41:40 -0800
commit59d82640dc577a681d16e881ffc398c2f87dc7b6 (patch)
treef2ed83423d09ac803b18dfd27fec941a060138df /notmuch.c
parent1eec45659b1f647c862667b045eb27a691d0f11e (diff)
notmuch setup: Remove a debugging print.
This was just some extra noise printed when requesting a non-default mail directory itneractively.
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/notmuch.c b/notmuch.c
index 64e59fe5..923a7cee 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -533,7 +533,7 @@ setup_command (unused (void *ctx), unused (int argc), unused (char *argv[]))
free (default_path);
}
- /* Coerce th directory into an absolute directory name. */
+ /* Coerce the directory into an absolute directory name. */
if (*mail_directory != '/') {
char *cwd, *absolute_mail_directory;
@@ -553,8 +553,6 @@ setup_command (unused (void *ctx), unused (int argc), unused (char *argv[]))
free (cwd);
free (mail_directory);
mail_directory = absolute_mail_directory;
-
- printf ("Abs: %s\n", mail_directory);
}
notmuch = notmuch_database_create (mail_directory);