mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
* nto-tdep.c (nto_target): Replace deprecated call to
cygwin_conv_to_posix_path functions by cygwin_conv_path calls.
This commit is contained in:
parent
0892011df2
commit
90375a0e4d
@ -1,3 +1,8 @@
|
||||
2011-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||
|
||||
* nto-tdep.c (nto_target): Replace deprecated call to
|
||||
cygwin_conv_to_posix_path functions by cygwin_conv_path calls.
|
||||
|
||||
2011-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
Fix false GCC warning.
|
||||
|
@ -59,9 +59,9 @@ nto_target (void)
|
||||
#ifdef __CYGWIN__
|
||||
static char buf[PATH_MAX];
|
||||
if (p)
|
||||
cygwin_conv_to_posix_path (p, buf);
|
||||
cygwin_conv_path (CCP_WIN_A_TO_POSIX, p, buf, PATH_MAX);
|
||||
else
|
||||
cygwin_conv_to_posix_path (default_nto_target, buf);
|
||||
cygwin_conv_path (CCP_WIN_A_TO_POSIX, default_nto_target, buf, PATH_MAX);
|
||||
return buf;
|
||||
#else
|
||||
return p ? p : default_nto_target;
|
||||
|
Loading…
Reference in New Issue
Block a user