diff options
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/emacsclient.c | 2 | ||||
-rw-r--r-- | lib-src/movemail.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index aab9c4b62f5..7792d0a2c74 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -1195,7 +1195,7 @@ set_local_socket (const char *local_socket_name) int use_tmpdir = 0; int saved_errno; const char *server_name = local_socket_name; - const char *tmpdir IF_LINT ( = NULL); + const char *tmpdir; char *tmpdir_storage = NULL; char *socket_name_storage = NULL; diff --git a/lib-src/movemail.c b/lib-src/movemail.c index 90e683ed855..45779dae5c2 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -338,7 +338,7 @@ main (int argc, char **argv) int lockcount = 0; int status = 0; #if defined (MAIL_USE_MAILLOCK) && defined (HAVE_TOUCHLOCK) - time_t touched_lock IF_LINT (= 0); + time_t touched_lock; #endif if (setuid (getuid ()) < 0 || setregid (-1, real_gid) < 0) |