From 53bfd73591037044b391dd9a849e77284a7932d1 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 08:06:49 -0800 Subject: gdb_connection_t -> struct gdb_connection Remove misleading typedef and redundant suffix from struct gdb_connection. --- src/server/gdb_server.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/gdb_server.h') diff --git a/src/server/gdb_server.h b/src/server/gdb_server.h index 4e334bc0..239c50e0 100644 --- a/src/server/gdb_server.h +++ b/src/server/gdb_server.h @@ -32,7 +32,7 @@ struct image_s; #define GDB_BUFFER_SIZE 16384 -typedef struct gdb_connection_s +struct gdb_connection { char buffer[GDB_BUFFER_SIZE]; char *buf_p; @@ -47,7 +47,7 @@ typedef struct gdb_connection_s allowing GDB to pick up a fresh set of register values from the target without modifying the target state. */ -} gdb_connection_t; +}; typedef struct gdb_service_s { -- cgit v1.2.3