mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 05:54:26 +08:00
ld/
2010-11-05 Pierre Muller <muller@ics.u-strasbg.fr> * emultempl/spuelf.em (new_tmp_file): Fix wrong first parameter.
This commit is contained in:
parent
b521dba831
commit
a38ce0d06c
@ -1,3 +1,7 @@
|
||||
2010-11-05 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||
|
||||
* emultempl/spuelf.em (new_tmp_file): Fix wrong first parameter.
|
||||
|
||||
2010-11-05 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* po/ld.pot: Regenerate
|
||||
|
@ -355,7 +355,7 @@ new_tmp_file (char **fname)
|
||||
*fname = mktemp (*fname);
|
||||
if (*fname == NULL)
|
||||
return -1;
|
||||
fd = open (fname, O_RDWR | O_CREAT | O_EXCL, 0600);
|
||||
fd = open (*fname, O_RDWR | O_CREAT | O_EXCL, 0600);
|
||||
#endif
|
||||
return fd;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user