mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-05-01 10:41:57 -07:00
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.
This commit is contained in:
parent
f79382819c
commit
325dfdae13
6 changed files with 8 additions and 8 deletions
|
|
@ -1530,7 +1530,7 @@ process_file_name (char *file, language *lang)
|
|||
fdesc *fdp;
|
||||
compressor *compr;
|
||||
char *compressed_name, *uncompressed_name;
|
||||
char *ext, *real_name UNINIT, *tmp_name;
|
||||
char *ext, *real_name UNINIT, *tmp_name UNINIT;
|
||||
int retval;
|
||||
|
||||
canonicalize_filename (file);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue