diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-11-03 19:03:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-11-03 19:03:48 +0000 |
commit | 08fa58c940d82dbbf1dbefb4a08165507a4e1ca1 (patch) | |
tree | eb26d533b282aad3971eb987028bfc4e5e28463c /lib-src/movemail.c | |
parent | dce87f47aa1978c60aa72059e2a78c3399d604c7 (diff) | |
download | emacs-08fa58c940d82dbbf1dbefb4a08165507a4e1ca1.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 |