]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: fix style issues in is_linked_with_cygwin_dll
authorSimon Marchi <simon.marchi@polymtl.ca>
Wed, 1 Apr 2020 21:41:31 +0000 (17:41 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Wed, 1 Apr 2020 21:42:24 +0000 (17:42 -0400)
gdb/ChangeLog:

* windows-tdep.c (is_linked_with_cygwin_dll): Fix style.

gdb/ChangeLog
gdb/windows-tdep.c

index d5715a8fa00567096cccfe54adbd978d3aae81b3..4775ff858aab6f8b42c6c29c44fcf67ad7314fbc 100644 (file)
@@ -1,3 +1,7 @@
+2020-04-01  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * windows-tdep.c (is_linked_with_cygwin_dll): Fix style.
+
 2020-04-01  Bernd Edlinger  <bernd.edlinger@hotmail.de>
 
        * buildsym.c (record_line): Fix undefined behavior and preserve
index 31b7b57005df67f5b02e98e92b568a0cfaea97d0..0042ea350e80b70930bcd7774e34fccac580a72d 100644 (file)
@@ -932,8 +932,8 @@ is_linked_with_cygwin_dll (bfd *abfd)
   /* Find the virtual address of the .idata section.  We must subtract this
      from the RVAs (relative virtual addresses) to obtain an offset in the
      section. */
-  bfd_vma idata_addr =
-    pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_TABLE].VirtualAddress;
+  bfd_vma idata_addr
+    pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_TABLE].VirtualAddress;
 
   /* Map the section's data.  */
   bfd_size_type idata_size;
@@ -984,14 +984,14 @@ is outside .idata section's range [0x%" BFD_VMA_FMT "x, 0x%" BFD_VMA_FMT "x[."),
       const gdb_byte *name = &idata_contents[name_addr - idata_addr];
 
       /* Make sure we don't overshoot the end of the section with the streq.  */
-      if (name + sizeof(CYGWIN_DLL_NAME) > end)
+      if (name + sizeof (CYGWIN_DLL_NAME) > end)
        continue;
 
       /* Finally, check if this is the dll name we are looking for.  */
       if (streq ((const char *) name, CYGWIN_DLL_NAME))
        return true;
 
-      iter += sizeof(pe_import_directory_entry);
+      iter += sizeof (pe_import_directory_entry);
     }
 
     return false;