diff options
| author | Eli Zaretskii | 2017-10-15 19:20:58 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2017-10-15 19:20:58 +0300 |
| commit | 325dfdae13bdc0653fe04b746326a1518ee18ff1 (patch) | |
| tree | db73df581e1835e1ae92ed5743f93da8d6a6c146 /src/fileio.c | |
| parent | f79382819c60609c5eff76cb2b85c330215abf90 (diff) | |
| download | emacs-325dfdae13bdc0653fe04b746326a1518ee18ff1.tar.gz emacs-325dfdae13bdc0653fe04b746326a1518ee18ff1.zip | |
Avoid compilation warnings in optimized builds
* src/process.c (Fmake_network_process):
* src/image.c (xbm_scan, gif_load):
* src/fileio.c (Frename_file):
* src/data.c (Fmake_local_variable):
* src/buffer.c (fix_start_end_in_overlays):
* lib-src/etags.c (process_file_name): Mark variables with UNINIT
to avoid compiler warnings in optimized builds.
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index e57bf46015c..b7df38c8570 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2296,7 +2296,7 @@ This is what happens in interactive use with M-x. */) | |||
| 2296 | bool plain_rename = (case_only_rename | 2296 | bool plain_rename = (case_only_rename |
| 2297 | || (!NILP (ok_if_already_exists) | 2297 | || (!NILP (ok_if_already_exists) |
| 2298 | && !INTEGERP (ok_if_already_exists))); | 2298 | && !INTEGERP (ok_if_already_exists))); |
| 2299 | int rename_errno; | 2299 | int rename_errno UNINIT; |
| 2300 | if (!plain_rename) | 2300 | if (!plain_rename) |
| 2301 | { | 2301 | { |
| 2302 | if (renameat_noreplace (AT_FDCWD, SSDATA (encoded_file), | 2302 | if (renameat_noreplace (AT_FDCWD, SSDATA (encoded_file), |