Skip to content

Commit

Permalink
Remove extraneous closing parenthesis in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
djschaap committed Sep 18, 2024
1 parent bea41f8 commit 5f3658b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fusedav.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 5f3658b

Please sign in to comment.