diff options
author | Eli Zaretskii <eliz@gnu.org> | 2002-02-15 12:07:14 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2002-02-15 12:07:14 +0000 |
commit | 79c2416b28b24dabdd168b5c79b9019e1f969e90 (patch) | |
tree | d5337f1558b41007368a42d2e1e82c32705b7c92 /lib-src/movemail.c | |
parent | 38044e1b07e81da268bcaeb20d7c2755727a71b6 (diff) | |
download | emacs-79c2416b28b24dabdd168b5c79b9019e1f969e90.tar.gz |
(popmail): Always pass two args to `error'.
Diffstat (limited to 'lib-src/movemail.c')
-rw-r--r-- | lib-src/movemail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/movemail.c b/lib-src/movemail.c index 61d58688901..be0e9d3ce94 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -811,7 +811,7 @@ popmail (mailbox, outfile, preserve, password, reverse_order) #ifdef BSD_SYSTEM if (fsync (mbfi) < 0) { - error ("Error in fsync: %s", strerror (errno)); + error ("Error in fsync: %s", strerror (errno), 0); return (1); } #endif |