From: Alan Modra Date: Mon, 18 May 2020 23:20:32 +0000 (+0930) Subject: win32 typo fix X-Git-Tag: binutils-2_35~707 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=39a1432c09fd0242a0c832b0db04b6a71adea254;p=thirdparty%2Fbinutils-gdb.git win32 typo fix PR 25713 * bfdio.c (_bfd_real_fopen): Typo fix. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6b3c94b39f8..3926bd1005b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2020-05-19 Alan Modra + + PR 25713 + * bfdio.c (_bfd_real_fopen): Typo fix. + 2020-05-18 Nick Clifton PR 26005 diff --git a/bfd/bfdio.c b/bfd/bfdio.c index bba8d896d3a..0133b76064a 100644 --- a/bfd/bfdio.c +++ b/bfd/bfdio.c @@ -130,7 +130,7 @@ _bfd_real_fopen (const char *filename, const char *modes) strcat (fullpath, filename); /* Convert any UNIX style path separators into the DOS form. */ - for (i = 0, fullpath[i]; i++) + for (i = 0; fullpath[i]; i++) { if (IS_UNIX_DIR_SEPARATOR (fullpath[i])) fullpath[i] = '\\';