changeset 31185:77ebd8404c02

Drop pointles _st suffix from struct mp_cmd_filter and mp_cmd_bind_section.
author diego
date Thu, 27 May 2010 23:36:03 +0000
parents a012168a8ec6
children 439a9130acf5
files input/input.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/input/input.c	Thu May 27 23:21:16 2010 +0000
+++ b/input/input.c	Thu May 27 23:36:03 2010 +0000
@@ -541,17 +541,17 @@
   int pos,size;
 } mp_input_fd_t;
 
-typedef struct mp_cmd_filter_st mp_cmd_filter_t;
+typedef struct mp_cmd_filter mp_cmd_filter_t;
 
-struct mp_cmd_filter_st {
+struct mp_cmd_filter {
   mp_input_cmd_filter filter;
   void* ctx;
   mp_cmd_filter_t* next;
 };
 
-typedef struct mp_cmd_bind_section_st mp_cmd_bind_section_t;
+typedef struct mp_cmd_bind_section mp_cmd_bind_section_t;
 
-struct mp_cmd_bind_section_st {
+struct mp_cmd_bind_section {
   mp_cmd_bind_t* cmd_binds;
   char* section;
   mp_cmd_bind_section_t* next;