summaryrefslogtreecommitdiffstats
path: root/input/input.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-27 23:36:03 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-27 23:36:03 +0000
commit72ba1c8fec36da67fdbede8e8443d810823fdf76 (patch)
treed052921cedb57df03a4956937ab6872d88a0e258 /input/input.c
parent495115f2f11e90b5ad5e94f1326d29244b7b174a (diff)
downloadmpv-72ba1c8fec36da67fdbede8e8443d810823fdf76.tar.bz2
mpv-72ba1c8fec36da67fdbede8e8443d810823fdf76.tar.xz
Drop pointles _st suffix from struct mp_cmd_filter and mp_cmd_bind_section.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31246 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input/input.c')
-rw-r--r--input/input.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/input/input.c b/input/input.c
index 0bcd5752af..16a0a20f50 100644
--- a/input/input.c
+++ b/input/input.c
@@ -541,17 +541,17 @@ typedef struct mp_input_fd {
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;