diff options
author | Ryo Nakamura <upa@haeena.net> | 2024-02-07 16:58:17 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2024-02-07 16:58:17 +0900 |
commit | f8f8cf1994edcf521fa8a25caf0ced9ad0a9553b (patch) | |
tree | 8d89b040cb3bc41e771b584b1726d98facf50ee6 | |
parent | 758c5e92b3e6ed481312345d3f0e713f4defeda8 (diff) |
remove unnecessary \n
-rw-r--r-- | src/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -369,7 +369,7 @@ next: * end. see https://bugzilla.mindrot.org/show_bug.cgi?id=3431 */ f = mscp_open(p->dst_path, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR, sftp); if (!f) { - priv_set_errv("mscp_open %s: %s\n", p->dst_path, strerrno()); + priv_set_errv("mscp_open %s: %s", p->dst_path, strerrno()); return -1; } |