Remove more "struct" keywords in range-based for loops
[deliverable/binutils-gdb.git] / gdb / serial.c
index 16308ab9c72d8b8a903c3ce1bd53c11d717190c7..0239fc833712518d5682e4b874c2c7fab3938121 100644 (file)
@@ -143,7 +143,7 @@ serial_log_command (struct target_ops *self, const char *cmd)
 static const struct serial_ops *
 serial_interface_lookup (const char *name)
 {
-  for (const struct serial_ops *ops : serial_ops_list)
+  for (const serial_ops *ops : serial_ops_list)
     if (strcmp (name, ops->name) == 0)
       return ops;
 
This page took 0.028446 seconds and 4 git commands to generate.