From 5f3658bc5fa0a8501611c2952c9a1f9c37d65fc3 Mon Sep 17 00:00:00 2001 From: Doug Schaapveld Date: Wed, 18 Sep 2024 14:08:16 -0500 Subject: [PATCH] Remove extraneous closing parenthesis in log message --- src/fusedav.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fusedav.c b/src/fusedav.c index fd48166..56aff7e 100644 --- a/src/fusedav.c +++ b/src/fusedav.c @@ -1259,7 +1259,7 @@ static int dav_unlink(const char *path) { return processed_gerror("dav_unlink: ", path, &gerr); } - log_print(LOG_NOTICE, SECTION_FUSEDAV_FILE, "dav_unlink: deleted \"%s\")", path); + log_print(LOG_NOTICE, SECTION_FUSEDAV_FILE, "dav_unlink: deleted \"%s\"", path); return 0; }