aboutsummaryrefslogtreecommitdiff
path: root/calendar.c
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-02-26 01:19:54 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-02-26 01:19:54 +0100
commit90b660414495b93d0ca031298db2f9853ee67392 (patch)
treeda0e75e1eda42e409fefd7d6a4ff41c694afe9e1 /calendar.c
parentAdd %vcomponent-parent. (diff)
downloadcalp-90b660414495b93d0ca031298db2f9853ee67392.tar.gz
calp-90b660414495b93d0ca031298db2f9853ee67392.tar.xz
Remove printing of all opened filenames.
Diffstat (limited to 'calendar.c')
-rw-r--r--calendar.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/calendar.c b/calendar.c
index d0476583..6f1756a3 100644
--- a/calendar.c
+++ b/calendar.c
@@ -106,7 +106,6 @@ int check_ext (const char* path, const char* ext) {
}
int open_ics (char* resolved_path, vcomponent* cal) {
- puts(resolved_path);
if (! check_ext(resolved_path, "ics") ) return 2;
FILE* f = fopen(resolved_path, "r");