* testsuite/gentestdlls.c (main): Move declaration of loop
variable outside of the for() statement.
+2019-08-08 Nick Clifton <nickc@redhat.com>
+
+ * testsuite/gentestdlls.c (main): Move declaration of loop
+ variable outside of the for() statement.
+
2019-08-08 Jordan Rupprecht <rupprecht@google.com>
* readelf.c (process_note): Mask unknown description data bytes.
{
char* program_name = argv[0];
char* output_directory = argv[1];
+ int i;
if (argc < 3)
{
platforms. See https://github.com/jbevain/cecil/issues/337 for an
example of this value being used in practice. */
- for (int i = 2; i < argc; i++)
+ for (i = 2; i < argc; i++)
{
char* wanted_format = argv[i];